YLabelCellOpts set the cell options for the labels on the Y axis.
(co ...cell.Option)
| 89 | |
| 90 | // YLabelCellOpts set the cell options for the labels on the Y axis. |
| 91 | func YLabelCellOpts(co ...cell.Option) Option { |
| 92 | return option(func(opts *options) { |
| 93 | opts.yLabelCellOpts = co |
| 94 | }) |
| 95 | } |
| 96 | |
| 97 | // AxisCellOpts sets the cell options for the Y-axis rule drawn beside the cells. |
| 98 | func AxisCellOpts(co ...cell.Option) Option { |