addDataPointForScatterSeries

addDataPointForScatterSeries(ChartDataCell xValue, ChartDataCell yValue) function

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(int) method).

Parameters

NameTypeDescription
xValueChartDataCellData point XValue
yValueChartDataCellData point YValue

Result

ChartDataPoint


addDataPointForScatterSeries(double xValue, ChartDataCell yValue) function

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(int) method).

Parameters

NameTypeDescription
xValuedoubleData point XValue
yValueChartDataCellData point YValue

Result

ChartDataPoint


addDataPointForScatterSeries(String xValue, ChartDataCell yValue) function

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(int) method).

Parameters

NameTypeDescription
xValueStringData point XValue
yValueChartDataCellData point YValue

Result

ChartDataPoint


addDataPointForScatterSeries(ChartDataCell xValue, double yValue) function

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(int) method).

Parameters

NameTypeDescription
xValueChartDataCellData point XValue
yValuedoubleData point YValue

Result

ChartDataPoint


addDataPointForScatterSeries(double xValue, double yValue) function

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(int) method).

Parameters

NameTypeDescription
xValuedoubleData point XValue
yValuedoubleData point YValue

Result

ChartDataPoint


addDataPointForScatterSeries(String xValue, double yValue) function

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(int) method).

Parameters

NameTypeDescription
xValueStringData point XValue
yValuedoubleData point YValue

Result

ChartDataPoint