IAxis.MinorTicks
IAxis

property MinorTicks: IPen;

Type Library
TeeChartx

Description
The MinorTicks property is the Pen used to draw the Axis Minor ticks. Minor ticks will only be displayed if MinorTicks.Visible is True.

MinorTicks Example

This code changes the Axis Minor tick pen:

Delphi

With TChart1.Axis.Bottom do

begin

MinorTickCount := 5 ;

MinorTickLength := 8 ; { pixels }

MinorTicks.Visible := True ;

MinorTicks.Color := clRed ;

MinorTicks.Width := 2 ;

end;

Visual Basic

With TChart1.Axis.Bottom

.MinorTickCount = 5

.MinorTickLength = 8

.MinorTicks.Visible = True

.MinorTicks.Color = vbYellow

.MinorTicks.Width = 2

End With