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



Glossary Item Box

Gets or sets the data point label placement.

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

' Set the Series BarLabelStyle to Outside and Point 4 Centered
Chart1.Series(0)("BarLabelStyle") = "Outside"

Chart1.Series(0).Points(3)("BarLabelStyle") = "Center"


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

// Set the Series BarLabelStyle to Outside and Point 4 Centered
Chart1.Series[0]["BarLabelStyle"] = "Outside";

Chart1.Series[0].Points[3]["BarLabelStyle"] = "Center";


Remarks

Gets or sets the data point label placement. 

Custom Attribute Summary
Possible Values: Outside  - DataPoint label is drawn outside of the datapoint.
Left  - DataPoint label is drawn inside of the datapoint and left aligned.
Right - DataPoint label is drawn inside of the datapoint and right aligned.
Center - DataPoint label is drawn inside of the datapoint and center aligned.
Default Value: Outside 
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Bar, Gantt

 


Figure 1: Each point set with a different BarLabelStyle value.

See Also

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