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

BootstrapChartSeries.SizeField Property

Specifies which data source field provides size values for bubbles. Required by and applies only to bubble series.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

[DefaultValue("size")]
public string SizeField { get; set; }

Property Value

Type Default Description
String "size"

A string that specifies the data source field.

Remarks

Each point in a bubble series has an argument, a regular value and a size value. Arguments are provided by the BootstrapChartCommonSeriesBase.ArgumentField; regular values are provided by the BootstrapChartSeries.ValueField; size values are provided by the SizeField.

Size values do not specify the real sizes of bubbles directly, they only define the sizes of bubbles in relation to each other. Apart from a size value, the real, pixel-measured size of a bubble depends on the BootstrapChart.MinBubbleSize and BootstrapChart.MaxBubbleSize values and the size of the BootstrapChartSeriesBase.Pane.

Commonly, a chart contains several series, and many of them have the same size field. In this case, assign the name of this field to the SizeField property of the BootstrapChartSeries object. If a series must have a unique size field, specify the same property, but do so in the series object within the BootstrapChartSeriesCollection array.

See Also