Delegate Axis.ScaleFormatHandler
A delegate that allows full custom formatting of the Axis labels
Namespace: ZedGraph
Assembly: ZedGraph.dll
Syntax
public delegate string ScaleFormatHandler(GraphPane pane, Axis axis, double val, int index);
Parameters
Type | Name | Description |
---|---|---|
GraphPane | pane | The GraphPane for which the label is to be formatted |
Axis | axis | The Scale of interest. |
Double | val | The value to be formatted |
Int32 | index | The zero-based index of the label to be formatted |
Returns
Type | Description |
---|---|
String | A string value representing the label, or null if the ZedGraph should go ahead and generate the label according to the current settings |