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

Glossary Item Box

A HiLo OpenClose chart displays stock information using High, Low, Open and Close values. Opening values are displayed using lines to the left, while lines to the right indicate closing values.

 

Chart Information

# of Y values/data point 4
# 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.
CloseLine gets or sets the line information for the close line.
OpenLine gets or sets the line information for the open line.
TickLen gets or sets the length of the tick for the open and close lines.

 

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

' Visual Basic
Imports DataDynamics.ActiveReports.Chart.Graphics

With Me.ChartControl1.Series(0)
    .Properties("OpenLine") = New Chart.Graphics.Line(Color.Green)
    .Properties("CloseLine") = New Chart.Graphics.Line(Color.Red)
    .Properties("HiloLine") = New Chart.Graphics.Line(Color.Black, 2)
    .Properties("TickLen") = 10.0F
End With
 
// C#
Using DataDynamics.ActiveReports.Chart.Graphics

this.chartControl1.Series[0].Properties["OpenLine"] = new Chart.Graphics.Line(Color.Green);
this.chartControl1.Series[0].Properties["CloseLine"] = new Chart.Graphics.Line(Color.Red);
this.chartControl1.Series[0].Properties["HiloLine"] = new Chart.Graphics.Line(Color.Black, 2);
this.chartControl1.Series[0].Properties["TickLen"] = 10f;

 

©2009. All Rights Reserved.