Delegate LabelFunc
Custom label generation function
Namespace: PLplot
Assembly: PLplotNet.dll
Syntax
public delegate void LabelFunc(Axis axis, Double value, out string label, Int32 length, IntPtr data);
Parameters
| Type | Name | Description |
|---|---|---|
| Axis | axis | This indicates which axis a label is being requested for. |
| Double | value | This is the value along the axis which is being labelled. |
| System.String | label | generated label |
| Int32 | length | maximum length of generated laben |
| IntPtr | data | Generic pointer to additional input data that may be required by the callback routine in order to generate label. |