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



Glossary Item Box

Gets or sets the Radar chart drawing style.

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

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


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

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


Remarks

Gets or sets the Radar chart drawing style. 

Custom Attribute Summary
Possible Values: Area - Draws series data points as a polygon filled in the Color of the series.
Line - Draws series data points as a line.
Marker - Draws series data points as markers.
Default Value: Area 
2D / 3D Limitations: No
Applies to Chart Element: Series Objects
Applies to Chart Types: Radar, Rose

 

Figure 1: Area RadarDrawingStyle shown left, Line RadarDrawingStyle shown middle, and Marker RadarDrawingStyle shown right.

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Radar Chart

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