Class BubbleOptions


public class BubbleOptions extends Options<BubbleOptions,DefaultAnimation>
The bubble chart has no unique configuration options. To configure options common to all of the bubbles, the point element options are used.

For example, to give all bubbles a 1px wide black border, the following options would be used.

new Chart(ctx,{ type:"bubble", options: { elements: { points: { borderWidth: 1, borderColor: 'rgb(0, 0, 0)' } } } });