iode.Table.graph_axis
- property Table.graph_axis: str
Graph axis of the table allows you to select the type of axis:
VALUES : level
LOG: logarithmic scale
SEMILOG: semi-logarithmic scale
PERCENT: Y scale in percent from 0 to 100
- Parameters:
- axisTableGraphAxis or str
Possible values are VALUES, LOG, SEMILOG or PERCENT.
Examples
>>> from iode import Table, TableGraphAxis >>> table = Table() >>> table.graph_axis 'VALUES' >>> table.graph_axis = TableGraphAxis.LOG >>> table.graph_axis 'LOG' >>> table.graph_axis = "percent" >>> table.graph_axis 'PERCENT'