add_double method

add_double(series_name, x_values, y_values)

Adds new ChartSeries to this collection. Use this method to add series to any type of Scatter charts.

def add_double(self, series_name: str, x_values: List[float], y_values: List[float]):
    ...
ParameterTypeDescription
series_namestr
x_valuesList[float]
y_valuesList[float]

Returns

Recently added ChartSeries object.

See Also