add method

add(x_value)

Adds the specified X value to the chart series. If the series supports Y values and bubble sizes, they will be empty for the X value.

def add(self, x_value: aspose.words.drawing.charts.ChartXValue):
    ...
ParameterTypeDescription
x_valueChartXValue

add(x_value, y_value)

Adds the specified X and Y values to the chart series.

def add(self, x_value: aspose.words.drawing.charts.ChartXValue, y_value: aspose.words.drawing.charts.ChartYValue):
    ...
ParameterTypeDescription
x_valueChartXValue
y_valueChartYValue

add(x_value, y_value, bubble_size)

Adds the specified X value, Y value and bubble size to the chart series.

def add(self, x_value: aspose.words.drawing.charts.ChartXValue, y_value: aspose.words.drawing.charts.ChartYValue, bubble_size: float):
    ...
ParameterTypeDescription
x_valueChartXValue
y_valueChartYValue
bubble_sizefloat

See Also