Пример #1
0
 /// <summary>
 /// Update the point with new values.
 /// </summary>
 /// <param name="options">The point options. If options isa single number, the point will be given that number as the y value.If it is an array,
 /// it will be interpreted as x and y values respectively.
 /// If it is an object, advanced options as outlined under options.point are applied.</param>
 /// <param name="redraw">Defaults to true. Whether to redraw the chart after the point is updated.If doing more operations on the chart,
 /// it is a good idea to set redraw to falseand call chart.redraw() after.</param>
 /// <param name="animation">Defaults to true. When true, the update will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void slice(object options, bool redraw, AnimationOptions animation) { }
Пример #2
0
 /// <summary>
 /// Add a point to the series after render time.
 /// </summary>
 /// <param name="options">The point options. If options isa single number,
 /// a point with that y value is appended to the series.If it is an array, it will be interpreted as x and y values respectively.
 /// If it is an object, advanced options as outlined under options.point are applied.</param>
 /// <param name="redraw">Defaults to true. Whether to redraw the chart after the point is added.
 /// When adding more thanone point, it is highly recommended that the redraw option beset to false,
 /// and instead chart.redraw() is explicitly calledafter the adding of points is finished.</param>
 /// <param name="shift">Defaults to false. When shift is true, one point is shifted off the start of the series as one is appended to the end.
 /// Use this option for live charts monitoring a value over time.</param>
 /// <param name="animation">Defaults to true. When true, the graph will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void addPoint(JsNumber options, bool redraw, bool shift, AnimationOptions animation) { }
Пример #3
0
 /// <summary>
 /// Remove the point from the series.
 /// </summary>
 /// <param name="redraw">Defaults to true.
 /// Whether to redraw the chart after the point is removed.If doing more operations on the chart,
 /// it is a good idea to set redraw to falseand call chart.redraw() after.</param>
 /// <param name="animation">Defaults to true. When true, the graph's updating will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void remove(bool redraw, AnimationOptions animation) { }
Пример #4
0
 /// <summary>
 /// Add a point to the series after render time.
 /// </summary>
 /// <param name="options">The point options. If options isa single number,
 /// a point with that y value is appended to the series.If it is an array, it will be interpreted as x and y values respectively.
 /// If it is an object, advanced options as outlined under options.point are applied.</param>
 /// <param name="redraw">Defaults to true. Whether to redraw the chart after the point is added.
 /// When adding more thanone point, it is highly recommended that the redraw option beset to false,
 /// and instead chart.redraw() is explicitly calledafter the adding of points is finished.</param>
 /// <param name="shift">Defaults to false. When shift is true, one point is shifted off the start of the series as one is appended to the end.
 /// Use this option for live charts monitoring a value over time.</param>
 /// <param name="animation">Defaults to true. When true, the graph will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void addPoint(PointOptions options, bool redraw, bool shift, AnimationOptions animation) { }
Пример #5
0
 /// <summary>
 /// Add a point to the series after render time.
 /// </summary>
 /// <param name="options">The point options. If options isa single number,
 /// a point with that y value is appended to the series.If it is an array, it will be interpreted as x and y values respectively.
 /// If it is an object, advanced options as outlined under options.point are applied.</param>
 /// <param name="redraw">Defaults to true. Whether to redraw the chart after the point is added.
 /// When adding more thanone point, it is highly recommended that the redraw option beset to false,
 /// and instead chart.redraw() is explicitly calledafter the adding of points is finished.</param>
 /// <param name="shift">Defaults to false. When shift is true, one point is shifted off the start of the series as one is appended to the end.
 /// Use this option for live charts monitoring a value over time.</param>
 /// <param name="animation">Defaults to true. When true, the graph will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void addPoint(JsArray options, bool redraw, bool shift, AnimationOptions animation) { }
Пример #6
0
 /// <summary>
 /// Set the minimum and maximum of the axes after render time.
 /// If the startOnTick and endOnTick options are true,the minimum and maximum values are rounded off to the nearest tick.
 /// To preventthis, these options can be set to false before calling setExtremes.
 /// </summary>
 /// <param name="min">The new minimum value</param>
 /// <param name="max">The new maximum value</param>
 /// <param name="redraw">Defaults to true. Whether to redraw the chart or wait for an explicit call to chart.redraw().</param>
 /// <param name="animation">Defaults to true. When true, the resize will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void setExtremes(JsNumber min, JsNumber max, bool redraw, AnimationOptions animation) { }
Пример #7
0
 /// <summary>
 /// Resize the chart to a given width and height.
 /// </summary>
 /// <param name="width">The new pixel width of the chart.</param>
 /// <param name="height">The new pixel height of the chart.</param>
 /// <param name="animation">Defaults to true. When true, the resize will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 public void setSize(JsNumber width, JsNumber height, AnimationOptions animation) { }
Пример #8
0
 /// <summary>
 /// Add a series to the chart after render time.
 /// Note that this method should never be usedwhen adding data synchronously at chart render time, as it adds expense to the calculationsand rendering.
 /// When adding data at the same time as the chart is initiated, add the seriesas a configuration option instead.
 /// </summary>
 /// <param name="options">The series options, as documented under plotOptions.seriesand under the plotOptions for each series type.</param>
 /// <param name="redraw">Defaults to true. Whether to redraw the chart after the series is added. See the redraw()method below.</param>
 /// <param name="animation">Defaults to true. When true, the series' updating will be animated with default animationoptions.
 /// The animation can also be a configuration object with properties durationand easing.</param>
 /// <returns></returns>
 public Series addSeries(PlotSeriesOptions options, bool redraw, AnimationOptions animation) { return null; }