CellOpts sets cell options on cells that contain the donut.
(cOpts ...cell.Option)
| 130 | |
| 131 | // CellOpts sets cell options on cells that contain the donut. |
| 132 | func CellOpts(cOpts ...cell.Option) Option { |
| 133 | return option(func(opts *options) { |
| 134 | opts.cellOpts = cOpts |
| 135 | }) |
| 136 | } |
| 137 | |
| 138 | // DefaultStartAngle is the default value for the StartAngle option. |
| 139 | const DefaultStartAngle = 90 |