Skip to main content
A newer version of this page is available. .

BootstrapChart.MaxBubbleSize Property

Specifies a coefficient determining the diameter of the largest bubble in a bubble series.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v18.2.dll

Declaration

[DefaultValue(typeof(decimal), "0.2")]
public decimal MaxBubbleSize { get; set; }

Property Value

Type Default Description
Decimal "0.2"

A Decimal value specifying the diameter of the largest bubble.

Remarks

When defining a bubble series, you are required to specify a size field. The largest size value will be represented on the chart by the largest bubble. Its visual diameter will be calculated by the following formula.

d = maxBubbleSize * min(height, width)

Normally, the height and width from this formula equal the size of the widget container. However, when several panes are used in the widget, the height and width equal the pane size.

See Also