AddDataPointForScatterSeries()

ChartDataPointCollection::AddDataPointForScatterSeries(System::SharedPtr<IChartDataCell>, 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 Scatter subtypes (see also ChartTypeCharacterizer::IsChartTypeScatter(ChartType) method).

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForScatterSeries(System::SharedPtr<IChartDataCell> xValue, System::SharedPtr<IChartDataCell> yValue) override

Arguments

ParameterTypeDescription
xValueSystem::SharedPtr<IChartDataCell>Data point XValue
yValueSystem::SharedPtr<IChartDataCell>Data point YValue

Return Value

New data point.

ChartDataPointCollection::AddDataPointForScatterSeries(double, 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 Scatter subtypes (see also ChartTypeCharacterizer::IsChartTypeScatter(ChartType) method).

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForScatterSeries(double xValue, System::SharedPtr<IChartDataCell> yValue) override

Arguments

ParameterTypeDescription
xValuedoubleData point XValue
yValueSystem::SharedPtr<IChartDataCell>Data point YValue

Return Value

New data point.

ChartDataPointCollection::AddDataPointForScatterSeries(System::String, 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 Scatter subtypes (see also ChartTypeCharacterizer::IsChartTypeScatter(ChartType) method).

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForScatterSeries(System::String xValue, System::SharedPtr<IChartDataCell> yValue) override

Arguments

ParameterTypeDescription
xValueSystem::StringData point XValue
yValueSystem::SharedPtr<IChartDataCell>Data point YValue

Return Value

New data point.

ChartDataPointCollection::AddDataPointForScatterSeries(System::SharedPtr<IChartDataCell>, double) method

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

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForScatterSeries(System::SharedPtr<IChartDataCell> xValue, double yValue) override

Arguments

ParameterTypeDescription
xValueSystem::SharedPtr<IChartDataCell>Data point XValue
yValuedoubleData point YValue

Return Value

New data point.

ChartDataPointCollection::AddDataPointForScatterSeries(double, double) method

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

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForScatterSeries(double xValue, double yValue) override

Arguments

ParameterTypeDescription
xValuedoubleData point XValue
yValuedoubleData point YValue

Return Value

New data point.

ChartDataPointCollection::AddDataPointForScatterSeries(System::String, double) method

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

System::SharedPtr<IChartDataPoint> Aspose::Slides::Charts::ChartDataPointCollection::AddDataPointForScatterSeries(System::String xValue, double yValue) override

Arguments

ParameterTypeDescription
xValueSystem::StringData point XValue
yValuedoubleData point YValue

Return Value

New data point.

See Also