Dundas Chart for Windows Forms
AreaDrawingStyle Custom Attribute
See Also Send comments on this topic.
Custom Attributes > AreaDrawingStyle Custom Attribute



Glossary Item Box

Gets or sets the plotting area shape of Radar, Rose, and Polar charts.

Visual Basic Copy Code
Imports Dundas.Charting.WinControl
  ...

' Set the Series AreaDrawingStyle to render as a Polygon
Chart1.Series(0)("AreaDrawingStyle") = "Polygon"
C# Copy Code
using Dundas.Charting.WinControl;
   ...

// Set the Series AreaDrawingStyle to render as a Polygon
Chart1.Series[0]["AreaDrawingStyle"] = "Polygon";

Remarks

Gets or sets the plotting area shape for Radar and Polar charts. 

Custom Attribute Summary
Possible Values: Circle - Draws a circular chart area shape.
Polygon - Draws a Polygon shaped chart area.
Default Value: Circle
2D / 3D Limitations: No
Applies to Chart Element: Series Objects
Applies to Chart Types: Polar, Radar, Rose

 


Figure 1: Polygon AreaDrawingStyle.

 


Figure 2: Circle AreaDrawingStyle.

See Also

©2009. All Rights Reserved.