AddDataPointForScatterSeries

AddDataPointForScatterSeries(IChartDataCell, IChartDataCell)

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

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

返回值

新数据点。

也可以看看


AddDataPointForScatterSeries(double, IChartDataCell)

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

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

返回值

新数据点。

也可以看看


AddDataPointForScatterSeries(string, IChartDataCell)

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

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

返回值

新数据点。

也可以看看


AddDataPointForScatterSeries(IChartDataCell, double)

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

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

返回值

新数据点。

也可以看看


AddDataPointForScatterSeries(double, double)

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

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

返回值

新数据点。

也可以看看


AddDataPointForScatterSeries(string, double)

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

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

返回值

新数据点。

也可以看看