ILNumerics Ultimate VS

TickCollectionLabelTransformFunc Field

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
Function used to control the creation of tick labels from position values. Default: DefaultLabelTransformFunc

Namespace:  ILNumerics.Drawing.Plotting
Assembly:  ILNumerics.Drawing (in ILNumerics.Drawing.dll) Version: ILNumerics Ultimate VS 4
Syntax

public Func<int, float, string> LabelTransformFunc

Field Value

Type: FuncInt32, Single, String
Remarks

The Func defines the following input parameters:

Index (int) - the index of the tick within the collection of all visible ticks; 0-based indexingThe position value (float) - number used to position the tick along the axis scale

The function returns a string which is directly used to display the tick.

In order to control the creation of tick labels and/or to implement custom tick filters, one may assign custom (anonymous) functions to

LabelTransformFunc
.

See Also

Reference