ISpeedometerScaleView.MajorTickInfo

Syntax

MajorTickInfo: ISpeedometerTickInfo;

Description

The MajorTickInfo property returns the parameters of main scale tick marks.

Example

Executing this example requires a form with the Button1 button and the SpeedometerBox component named SpeedometerBox1.

Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);

Var

s: ISpeedometer;

v: ISpeedometerView;

ScaleView: ISpeedometerScaleView;

Tick: ISpeedometerTickInfo;

Begin

s := SpeedometerBox1.Speedometer;

v := s.View;

s.BeginUpdate;

ScaleView := v.ScaleViews.Item(0);

Tick := ScaleView.MajorTickInfo;

Tick.Color := GxColor.FromName("Green");

Tick.Height := 2;

Tick.Proportion := 0.7;

Tick.Shape := SpeedometerTickShapes.Rombus;

s.EndUpdate;

End Sub Button1OnClick;

If the user presses the button after executing this example, the design of main scale divisions of the speedometer that is displayed in the SpeedometerBox1 component is changed.

See also:

ISpeedometerScaleView