Dundas Chart for ASP.NET
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 and Polar charts.

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

' Set the Series AreaDrawingStyle to render as a Polygon
Chart1.Series(0)("AreaDrawingStyle") = "Polygon"


C# Copy Code
using Dundas.Charting.WebControl;
  ...

// 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

Copyright © 2001 - 2009 Dundas Data Visualization, Inc. and others.