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



Glossary Item Box

Gets or sets the label drawing style for Polar and Radar charts.

 

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

' Set the Series CircularLabelStyle to Radial.
Chart1.Series(0)("CircularLabelStyle") = "Radial"


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

// Set the Series CircularLabelStyle to Radial.
Chart1.Series[0]["CircularLabelStyle"] = "Radial";


Remarks

Gets or sets the label drawing style for Polar and Radar charts. 

Custom Attribute Summary
Possible Values: Circular  - DataPoint labels are drawn around the Polar or Radar.
Horizontal - DataPoint labels are horizontally drawn around the Polar or Radar chart.
Radial - DataPoint labels are drawn extending outwards from the Polar or Radar chart.
Default Value: Horizontal 
2D / 3D Limitations: No
Applies to Chart Element: Series Objects
Applies to Chart Types: Radar, Polar

  


Figure 1: Horizontal CircularLabelStyle.

 


Figure 2: Circular CircularLabelStyle.

 


Figure 3: Radial CircularLabelStyle.

See Also

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