IChart.WickOffset

Syntax

WickOffset: Double;

Description

The WickOffset property determines offset of oscillation interval markers relative to a bar.

Comments

This property is used only for charts of the bar chart With Fluctuation Interval type. The values should belong to the range [-0.5; 0.5].

Example

This example assumes that there is the Chart object of the IChart type. The chart must be of the bar chart With Fluctuation Interval type. To transform a chart to this type you need to run the following command:

«Chart.Type := ChartType.Candle;»

Sub User;

Var

Chart : IChart;

Begin

Chart.WickOffset := 0.3;

End Sub User;

After executing the example markers of oscillation interval are shifted from the column center to the specified distance.

See also:

IChart