Glossary Item Box

ActiveReports for .NET 2 Online Help Send feedback to Data Dynamics

HiLo Charts

A HiLo chart displays stock information using High and Low or Open and Close values. The length of the HiLo line is determined by the High and Low values or the Open and Close values.

 

Chart Information

# of Y values/data point 2
# of Series 1 or more
Marker Support Series or Data Point. Marker labels use the first Y value as the default value.
Custom Properties HiLoLine gets or sets the line information for the HiLo line.

 

Below is an example of setting the custom chart properties at run time for a HiLo chart as shown in the image above.

' Visual Basic
Me.ChartControl1.Series(0).Properties("HiLoLine") = New Line(Color.Teal, 4)
 
// C#
this.ChartControl1.Series[0].Properties["HiLoLine"] = new Line(Color.Teal, 4);

 

 

 


Copyright © 2004-2005 Data Dynamics, Ltd. All rights reserved.