ActiveReports for .NET 3 Online Help Request technical support
HiLo Charts
User Guide > Concepts > Charts > Chart Types > Financial Charts > HiLo Charts

Glossary Item Box

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 DataDynamics.ActiveReports.Chart. _
    Graphics.Line(Color.DeepSkyBlue, 4)
 
// C#
this.chartControl1.Series[0].Properties["HiloLine"] = new DataDynamics.ActiveReports.Chart.
    Graphics.Line(Color.DeepSkyBlue, 4);

 

©2009. All Rights Reserved.