Bubble(IList<object>, IList<object>, IList<object>, IList<string>, IList<string>, string, string)

Draws bubble chart in the component.

Declaration Syntax

public void Bubble(IList<object> xValues, IList<object> yValues, IList<object> sizeValues, IList<string> shapeValues, IList<string> colorsValues, string color, string key)

Parameters

xValues(IList<object>)

The values in the x axis.

yValues(IList<object>)

The values in the y axis.

sizeValues(IList<object>)

The size of each bubble.

shapeValues(IList<string>)

The shape of the bubble. Possible value : 'circle', 'cross', 'triangle-up', 'triangle-down', 'diamond', 'square' (default : 'circle').

colorsValues(IList<string>)

Color of the line. You can use "r" for red, "b" for blue, "g" for green, "m" for magenta, "c" for cyan, "y" for yellow, "k" for black and "w" for white. You can also specify the hexadecimal code : "#XXXXXX" with X between 0 and F. The two first number define the red component, the third and the fourth define the green component and the two last numbers define the blue component.

color(string)

Color for all bubble. Same format for this one and colorsValues.

key(string)

Group name, if a group with the same name already exist this function will replace the old one.