(Defined in: jpgraph_log.php : 129)
Class usage and Overview
This class represents ticks on a logarithmic scale axis. It is responsible for drawing and positioning ticks.
See also related classes:
LogScale and Axis
Class Methods
Should the log labels be dispalyed with magnitudes ot plain numbers
Argument | Default | Description |
$aType
| | Magnitude (10^x) or plain |
Description:
Specify how labels for log scales should be formatted as magnitude (scientific) or plain.
$aType can be either
- LOGLABELS_PLAIN, will show labels as for example 10000
- LOGLABELS_MAGNITUDE, will show labels as 10^4
By default log scale uses magnitude type of labels.
$graph->yaxis->scale->ticks->SetLabelLogType(LOGLABELS_PLAIN);