BorderLineStyle sets the style of the line used to draw the border.
(ls linestyle.LineStyle)
| 76 | |
| 77 | // BorderLineStyle sets the style of the line used to draw the border. |
| 78 | func BorderLineStyle(ls linestyle.LineStyle) BorderOption { |
| 79 | return borderOption(func(bOpts *borderOptions) { |
| 80 | bOpts.lineStyle = ls |
| 81 | }) |
| 82 | } |
| 83 | |
| 84 | // BorderCellOpts sets options on the cells that create the border. |
| 85 | func BorderCellOpts(opts ...cell.Option) BorderOption { |