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



Glossary Item Box

Gets or sets the visibility of the Upper and Lower Error values.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the Series to show the Upper Error value only and Point 3 to show Lower.
Chart1.Series(0)("ErrorBarStyle") = "UpperError"
Chart1.Series(0).Points(3)("ErrorBarStyle") = "LowerError"


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

// Set the Series to show the Upper Error value only and Point 3 to show Lower.
Chart1.Series[0]["ErrorBarStyle"] = "UpperError";
Chart1.Series[0].Points[3]["ErrorBarStyle"] = "LowerError";


                    

Remarks

Gets or sets the visibility of the Upper and Lower Error values. 

Custom Attribute Summary
Possible Values: Both - Both the Upper and Lower error values will be shown.
UpperError - Only the Upper error value will be shown.
LowerError - Only the Lower error value will be shown.
Default Value: Both
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Error Bar

See Also

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