Dundas Chart for ASP.NET
PolarDrawingStyle Custom Attribute
See Also Send comments on this topic.
Custom Attributes > PolarDrawingStyle Custom Attribute



Glossary Item Box

Gets or sets the Polar chart drawing style.

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

' Set the Series PolarDrawingStyle to render as a Line.
Chart1.Series(0)("PolarDrawingStyle") = "Line"


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

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


Remarks

Gets or sets the Polar chart drawing style. 

Custom Attribute Summary
Possible Values: Line - Draws series data points as a line.
Marker - Draws series data points as markers.
Default Value: Line 
2D / 3D Limitations: No
Applies to Chart Element: Series Objects
Applies to Chart Types: Polar

 

Figure 1: PolarDrawingStyle set to Line shown left, and PolarDrawingStyle set to Marker shown right.

See Also

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