AddDataPointForBarSeries()

ChartDataPointCollection::AddDataPointForBarSeries(System::SharedPtr<IChartDataCell>) method

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).

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForBarSeries(System::SharedPtr<IChartDataCell> value) override

Arguments

ParameterTypeDescription
valueSystem::SharedPtr<IChartDataCell>Data point Value

Return Value

New data point.

ChartDataPointCollection::AddDataPointForBarSeries(double) method

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).

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForBarSeries(double value) override

Arguments

ParameterTypeDescription
valuedoubleData point Value

Return Value

New data point.

See Also