iode.Table.gridx
- property Table.gridx: str
The gridx value of the table offers a choice of three X-grid options:
MAJOR: draws a line across the entire graph at each main axis graduation
NONE: removes the grid from the graph.
MINOR: draws a line at all graduations
- Parameters:
- value: TableGraphGrid or str
Possible values are MAJOR, NONE or MINOR.
Examples
>>> from iode import Table, TableGraphGrid >>> table = Table() >>> table.gridx 'MAJOR' >>> table.gridx = TableGraphGrid.NONE >>> table.gridx 'NONE' >>> table.gridx = "minor" >>> table.gridx 'MINOR'