SetLineSpacing sets the spacing between lines.
(spacing float64)
| 198 | |
| 199 | // SetLineSpacing sets the spacing between lines. |
| 200 | func (l *Label) SetLineSpacing(spacing float64) *Label { |
| 201 | |
| 202 | l.style.LineSpacing = spacing |
| 203 | l.SetText(l.text) |
| 204 | return l |
| 205 | } |
| 206 | |
| 207 | // LineSpacing returns the spacing between lines. |
| 208 | func (l *Label) LineSpacing() float64 { |