Page History
...
Name | Type | Data Type | Description |
|---|---|---|---|
Label | *Both | Unicode String | Label that is displayed as the tick |
Value | *Input | Decimal | value of the tick |
Axis | *Input | Enumeration | Azis Axis that is being formatted |
Details
...
Evtroutine Handling(#Chart.FormatTick) Value(#Value) Label(#Label) Axis(#Axis)
If (#Axis = 'PRIMARY')
#Label := #Value.AsString + '%'
Else
#Label := '$' + #Value.AsString
Endif
Endroutine