updateOptions method

void updateOptions(
  1. DygraphOptions options, [
  2. bool? blockRedraw
])

Changes various properties of the graph. These can include:

  • data: changes the source data for the graph
  • errorBars: changes whether the data contains stddev

There's a huge variety of options that can be passed to this method. For a full list, see http://dygraphs.com/options.html.

Implementation

external void updateOptions(DygraphOptions options, [bool? blockRedraw]);