iode.Table.gridy

property Table.gridy: str

The gridy value of the table offers a choice of three Y-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.gridy
'MAJOR'
>>> table.gridy = TableGraphGrid.NONE
>>> table.gridy
'NONE'
>>> table.gridy = "minor"
>>> table.gridy
'MINOR'