Gets or sets a boolean value that indicates the Bubble Size will be used as the DataPoint label.
Visual Basic |
Copy Code |
Imports Dundas.Charting.WebControl
...
' Set the Bubble size as the data point label.
Chart1.Series(0)("BubbleUseSizeForLabel") = "true"
|
C# |
Copy Code |
using Dundas.Charting.WebControl;
...
// Set the Bubble size as the data point label.
Chart1.Series[0]["BubbleUseSizeForLabel"] = "true";
|
Remarks
Gets or sets a boolean value that indicates the Bubble Size will be used as the DataPoint label.
Custom Attribute Summary |
Possible Values: |
true or false |
Default Value: |
false |
2D / 3D Limitations: |
No |
Applies to Chart Element: |
Series Objects |
Applies to Chart Types: |
Bubble |
See Also