bubble

Configuration Structure

bubble: {
zScaling: boolean,
minBubbleRadius: number,
maxBubbleRadius: number,
minZ: number,
maxZ: number,
}

plotOptions

zScaling

Default: true

zScaling controls whether to draw the bubbles of different size (based on z value) or to draw same size bubbles (helpful in case your data-set contains values that extends to extreme ends)

minBubbleRadius

Default: undefined

Minimum radius size of a bubble. If a bubble value is too small to be displayed, this size will be used.

maxBubbleRadius

Default: undefined

Maximum radius size of a bubble. If a bubble value is too large to cover the chart, this size will be used.

minZ

Default: undefined

Explicit lower bound of the z window the size scale maps from.

It expands the data's own z extent and never clamps it, so setting it cannot hide a bubble. Give several charts the same window and their bubble areas become comparable across charts, which a per-chart extent cannot do. A trellis with scales.size: 'shared' pushes the union extent through these.

maxZ

Default: undefined

Explicit upper bound of the z window. See minZ.