AddDataPointForScatterSeries

AddDataPointForScatterSeries(IChartDataCell, IChartDataCell)

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

public IChartDataPoint AddDataPointForScatterSeries(IChartDataCell xValue, IChartDataCell yValue)
ParameterTypeDescription
xValueIChartDataCellData point XValue
yValueIChartDataCellData point YValue

Return Value

New data point.

See Also


AddDataPointForScatterSeries(double, IChartDataCell)

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

public IChartDataPoint AddDataPointForScatterSeries(double xValue, IChartDataCell yValue)
ParameterTypeDescription
xValueDoubleData point XValue
yValueIChartDataCellData point YValue

Return Value

New data point.

See Also


AddDataPointForScatterSeries(string, IChartDataCell)

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

public IChartDataPoint AddDataPointForScatterSeries(string xValue, IChartDataCell yValue)
ParameterTypeDescription
xValueStringData point XValue
yValueIChartDataCellData point YValue

Return Value

New data point.

See Also


AddDataPointForScatterSeries(IChartDataCell, double)

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

public IChartDataPoint AddDataPointForScatterSeries(IChartDataCell xValue, double yValue)
ParameterTypeDescription
xValueIChartDataCellData point XValue
yValueDoubleData point YValue

Return Value

New data point.

See Also


AddDataPointForScatterSeries(double, double)

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

public IChartDataPoint AddDataPointForScatterSeries(double xValue, double yValue)
ParameterTypeDescription
xValueDoubleData point XValue
yValueDoubleData point YValue

Return Value

New data point.

See Also


AddDataPointForScatterSeries(string, double)

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

public IChartDataPoint AddDataPointForScatterSeries(string xValue, double yValue)
ParameterTypeDescription
xValueStringData point XValue
yValueDoubleData point YValue

Return Value

New data point.

See Also