public TicksPen MinorTicks {get; set;}
Remarks
The MinorTicks property is the Pen used to draw the Axis Minor ticks. Minor ticks will only be displayed if MinorTicks.Visible is true.
Example
[C#]
tChart1.Axes.Bottom.MinorTickCount = 5;
tChart1.Axes.Bottom.MinorTicks.Length = 8;
tChart1.Axes.Bottom.MinorTicks.Visible = true;
tChart1.Axes.Bottom.MinorTicks.Color = Color.Yellow;
tChart1.Axes.Bottom.MinorTicks.Width = 2;
See Also
Axis Class | Axis Members | Steema.TeeChart Namespace