[C#] | public void setTickLength(int majorLen [, int minorLen [, int microLen ]]); |
[VB] | Public Sub setTickLength(majorLen As Integer [, minorLen As Integer [, microLen As Integer ]]) |
ChartDirector 7.1 (.NET Edition)
BaseMeter.
Usage
[C#] | public void setTickLength(int majorLen [, int minorLen [, int microLen ]]); |
[VB] | Public Sub setTickLength(majorLen As Integer [, minorLen As Integer [, microLen As Integer ]]) |
Description
Arguments
Argument | Default | Description |
---|---|---|
majorLen | (Mandatory) | The length of the major ticks in pixels. A positive value means the tick is at the 'outward' direction of the meter. A negative value means the tick is at the 'inward' direction. For an angular meter, the default is -10 (10 pixels at the inward direction). For a horizontal linear meter, the default is the same height as the meter scale region in the inward direction. For a vertical linear meter, the default is the same width as the meter scale region in the inward direction. |
minorLen | -7fffffff | The length of the minor ticks in pixels. The default is 60% of the length of the major ticks. |
microLen | -7fffffff | The length of the micro ticks in pixels. The default is 50% of the length of the minor ticks. |
Return Value