AddDataPointForBarSeries

AddDataPointForBarSeries(IChartDataCell)

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

public IChartDataPoint AddDataPointForBarSeries(IChartDataCell value)
ParameterTypeDescription
valueIChartDataCellData point Value

Return Value

New data point.

See Also


AddDataPointForBarSeries(double)

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

public IChartDataPoint AddDataPointForBarSeries(double value)
ParameterTypeDescription
valueDoubleData point Value

Return Value

New data point.

See Also