Gets or sets the Rose chart drawing style.
| Visual Basic | Copy Code |
|---|---|
|
Imports Dundas.Charting.WebControl ... ' Set the Series RoseDrawingStyle to render as a Line. Chart1.Series(0)("RoseDrawingStyle") = "Line" |
|
| C# | Copy Code |
|---|---|
|
using Dundas.Charting.WebControl; ... // Set the Series RoseDrawingStyle to render as a Line. Chart1.Series[0]["RoseDrawingStyle"] = "Line"; |
|
Remarks
Gets or sets the Rose chart drawing style.
| Custom Attribute Summary | |
|---|---|
| Possible Values: |
Area - Draws series data points as a polygon filled in the Color of the series. |
| Default Value: | Area |
| 2D / 3D Limitations: | No |
| Applies to Chart Element: | Series Objects |
| Applies to Chart Types: | Rose |