Bubble Chart - FormatTick Event

Fires when the ticks are created to allow formatting of the tick values

Member of Bubble Chart (PRIM_CHRT.BubbleChart)

Parameters

NameTypeData TypeDescription
Label*BothUnicode StringLabel that is displayed as the tick
Value*InputDecimalValue of tick
Axis*InputEnumerationAxis that is being formatted

Details

Fires when the ticks are created to allow formatting of the tick values.

Example

In this example shows changing the tick for the primary axis to show the values as a percent and the secondary axis as dollars.
Evtroutine Handling(#Chart.FormatTick) Value(#Value) Label(#Label) Axis(#Axis)
 
    If (#Axis = 'PRIMARY')
 
            #Label := #Value.AsString + '%'
 
    Else
 
            #Label := '$' + #Value.AsString
 
    Endif
 
Endroutine

See also

All Component Classes

Technical Reference

LANSA Version 15, April 2020