Ejemplo n.º 1
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>
 public void addPoint(PointOptions options) { }
Ejemplo n.º 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>
 public void addPoint(PointOptions options, bool redraw, bool shift) { }
Ejemplo n.º 3
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>
 public void addPoint(PointOptions options, bool redraw) { }
Ejemplo n.º 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) { }