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



Glossary Item Box

Gets or sets a boolean value that indicates that Open and Close markers are displayed.
Visual Basic Copy Code
Imports Dundas.Charting.WebControl
   ...

' Set the series to draw both open and close values.
Chart1.Series(0)("ShowOpenClose") = "Both"

' Set Point 3 to draw only Open values.
Chart1.Series(0).Points(3)("ShowOpenClose") = "Open"


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

// Set the series to draw both open and close values.
Chart1.Series[0]["ShowOpenClose"] = "Both";

// Set Point 3 to draw only Open values.
Chart1.Series[0].Points[3]["ShowOpenClose"] = "Open";

Remarks

Gets or sets a value that indicates whether Open and/or Close markers are displayed. The attribute only affects the Stock Chart

Custom Attribute Summary
Possible Values: Both- Both open and close values are shown.
Open - Only open values are not shown.
Close- Only close values are shown.
Default Value: True 
2D / 3D Limitations: No
Applies to Chart Element: Series and DataPoint Objects
Applies to Chart Types: Stock

See Also

Custom Attributes
Custom Attributes Overview

Chart Types
Stock Chart

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