AddDataPointForScatterSeries

AddDataPointForScatterSeries(IChartDataCell, IChartDataCell)

创建新的数据点并将其添加到集合的末尾。适用于图表类型为散点子类型之一的系列(另见 ChartTypeCharacterizer.IsChartTypeScatter(ChartType) 方法)。

public IChartDataPoint AddDataPointForScatterSeries(IChartDataCell xValue, IChartDataCell yValue)
参数类型描述
xValueIChartDataCell数据点 XValue
yValueIChartDataCell数据点 YValue

返回值

新的数据点。

另见


AddDataPointForScatterSeries(double, IChartDataCell)

创建新的数据点并将其添加到集合的末尾。适用于图表类型为散点子类型之一的系列(另见 ChartTypeCharacterizer.IsChartTypeScatter(ChartType) 方法)。

public IChartDataPoint AddDataPointForScatterSeries(double xValue, IChartDataCell yValue)
参数类型描述
xValueDouble数据点 XValue
yValueIChartDataCell数据点 YValue

返回值

新的数据点。

另见


AddDataPointForScatterSeries(string, IChartDataCell)

创建新的数据点并将其添加到集合的末尾。适用于图表类型为散点子类型之一的系列(另见 ChartTypeCharacterizer.IsChartTypeScatter(ChartType) 方法)。

public IChartDataPoint AddDataPointForScatterSeries(string xValue, IChartDataCell yValue)
参数类型描述
xValueString数据点 XValue
yValueIChartDataCell数据点 YValue

返回值

新的数据点。

另见


AddDataPointForScatterSeries(IChartDataCell, double)

创建新的数据点并将其添加到集合的末尾。适用于图表类型为散点子类型之一的系列(另见 ChartTypeCharacterizer.IsChartTypeScatter(ChartType) 方法)。

public IChartDataPoint AddDataPointForScatterSeries(IChartDataCell xValue, double yValue)
参数类型描述
xValueIChartDataCell数据点 XValue
yValueDouble数据点 YValue

返回值

新的数据点。

另见


AddDataPointForScatterSeries(double, double)

创建新的数据点并将其添加到集合的末尾。适用于图表类型为散点子类型之一的系列(另见 ChartTypeCharacterizer.IsChartTypeScatter(ChartType) 方法)。

public IChartDataPoint AddDataPointForScatterSeries(double xValue, double yValue)
参数类型描述
xValueDouble数据点 XValue
yValueDouble数据点 YValue

返回值

新的数据点。

另见


AddDataPointForScatterSeries(string, double)

创建新的数据点并将其添加到集合的末尾。适用于图表类型为散点子类型之一的系列(另见 ChartTypeCharacterizer.IsChartTypeScatter(ChartType) 方法)。

public IChartDataPoint AddDataPointForScatterSeries(string xValue, double yValue)
参数类型描述
xValueString数据点 XValue
yValueDouble数据点 YValue

返回值

新的数据点。

另见