add_bubbles method

add_bubbles(series_name, x_values, y_values, bubble_sizes)

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

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

Returns

Recently added ChartSeries object.

See Also