/// <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> /// <returns></returns> public Series addSeries(PlotSeriesOptions options, bool redraw) { return null; }
/// <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> /// <returns></returns> public Series addSeries(PlotSeriesOptions options) { return null; }
/// <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; }