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



Glossary Item Box

Gets or sets the marker style for Open and Close values for Stock and CandleStick chart types.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the Series to Triangle and Line for Point 3.
Chart1.Series(0)("OpenCloseStyle") = "Triangle"
Chart1.Series(0).Points(3)("OpenCloseStyle") = "Line"


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

// Set the Series to Triangle and Line for Point 3.
Chart1.Series[0]["OpenCloseStyle"] = "Triangle";
Chart1.Series[0].Points[3]["OpenCloseStyle"] = "Line";


                    

Remarks

Gets or sets the marker style for Open and Close values for Stock and CandleStick chart types. 

Custom Attribute Summary
Possible Values: Triangle  - The Open and Close values are shown as Triangles.
Line  - The Open and Close values are shown with tick-mark lines.
CandleStick  - The DataPoint is shown as a CandleStick.
Default Value: Line
2D / 3D Limitations: No
Applies to Chart Elements: Series and DataPoint Objects
Applies to Chart Types: Stock, Candlestick

See Also

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