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



Glossary Item Box

Gets or sets the appearance of the marker at the center value of the Error Bar.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the Series to show a Star-Shaped center marker and a Square marker for point 3.
Chart1.Series(0)("ErrorBarCenterMarkerStyle") = "Star4"
Chart1.Series(0).Points(3)("ErrorBarCenterMarkerStyle") = "Square"


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

// Set the Series to show a Star-Shaped center marker and a Square marker for point 3.
Chart1.Series[0]["ErrorBarCenterMarkerStyle"] = "Star4";
Chart1.Series[0].Points[3]["ErrorBarCenterMarkerStyle"] = "Square";


                    

Remarks

Gets or sets the appearance of the marker at the center value of the Error Bar. 

Custom Attribute Summary
Possible Values: None - No marker will be shown.
Line - A Line will be drawn as the marker.
Square - A Square will be drawn as the marker.
Circle - A Circle will be drawn as the marker.
Diamond - A Diamond will be drawn as the marker.
Triangle - A Triangle will be drawn as the marker.
Cross - A Cross will be drawn as the marker.
Star4 - A 4-point Star will be drawn as the marker.
Star5 - A 5-point Star will be drawn as the marker.
Star6 - A 6-point Star will be drawn as the marker.
Star10 - A 10-point Star will be drawn as the marker.
Default Value: None
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.