BubbleSeriesView.AutoSize Property
Gets or sets the value indicating whether or not bubble sizes are calculated automatically.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[TypeConverter(typeof(BooleanTypeConverter))]
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
[XtraSerializableProperty]
public bool AutoSize { get; set; }
Property Value
Type | Description |
---|---|
Boolean | true, if bubble sizes should be calculated automatically; otherwise, false. |
Remarks
The AutoSize property is set to true by default. In this case, the BubbleSeriesView.MinSize and BubbleSeriesView.MaxSize properties have no affect on bubble sizes. Set the AutoSize property to false to manually specify minimum and maximum bubble sizes using the BubbleSeriesView.MinSize and BubbleSeriesView.MaxSize properties.
See Also