AddDataPointForLineSeries

AddDataPointForLineSeries(IChartDataCell)

Creates the new data point and adds it to the end of collection. Applicable for series which chartType is one of Line subtypes (see also ChartTypeCharacterizer.IsChartTypeLine(ChartType) method).

public IChartDataPoint AddDataPointForLineSeries(IChartDataCell value)
ParameterTypeDescription
valueIChartDataCellData point Value.

Return Value

New data point.

See Also


AddDataPointForLineSeries(double)

Creates the new data point and adds it to the end of collection. Applicable for series which chartType is one of Line subtypes (see also ChartTypeCharacterizer.IsChartTypeLine(ChartType) method).

public IChartDataPoint AddDataPointForLineSeries(double value)
ParameterTypeDescription
valueDoubleData point Value.

Return Value

New data point.

See Also