TiPlotAxis.MinorCount
TiPlotAxis See Also
Specifies the number of axis minor ticks shown.
property MinorCount : Integer;
Description
Use MinorCount to get or set the number of axis minor ticks shown. MinorCount
should be set to one less than the desires number of minor sections. For
example, if you want 5 minor sections, set MinorCount to 4.
Example
Delphi
iComponent.XAxis[0].MinorCount := 4;
iComponent.YAxis[0].MinorCount := 4;
C++ Builder
iComponent->XAxis[0]->MinorCount = 4;
iComponent->YAxis[0]->MinorCount = 4;
Contents | Index | Previous | Next