[C#] | public void setMeterColors(int axisColor [, int labelColor [, int tickColor ]]); |
[VB] | Public Sub setMeterColors(axisColor As Integer [, labelColor As Integer [, tickColor As Integer ]]) |
ChartDirector 7.1 (.NET Edition)
BaseMeter.
Usage
[C#] | public void setMeterColors(int axisColor [, int labelColor [, int tickColor ]]); |
[VB] | Public Sub setMeterColors(axisColor As Integer [, labelColor As Integer [, tickColor As Integer ]]) |
Description
Arguments
Argument | Default | Description |
---|---|---|
axisColor | (Mandatory) | The color for drawing the meter scale line. The default is LineColor. |
labelColor | -1 | The color for drawing the scale labels. Passing -1 in this argument means the label color is not changed. The default label color is TextColor. |
tickColor | -1 | The color for drawing the ticks. Passing -1 in this argument means the tick color is not changed. The default tick color is LineColor. |
Return Value