()
| 17 | */ |
| 18 | export class Legend { |
| 19 | constructor () { |
| 20 | this._parent = undefined; |
| 21 | this._x = 0; |
| 22 | this._y = 0; |
| 23 | this._itemHeight = 12; |
| 24 | this._gap = 5; |
| 25 | this._horizontal = false; |
| 26 | this._legendWidth = 560; |
| 27 | this._itemWidth = 70; |
| 28 | this._autoItemWidth = false; |
| 29 | this._legendText = pluck('name'); |
| 30 | this._maxItems = undefined; |
| 31 | this._highlightSelected = false; |
| 32 | this._keyboardAccessible = false; |
| 33 | |
| 34 | this._g = undefined; |
| 35 | } |
| 36 | |
| 37 | parent (p) { |
| 38 | if (!arguments.length) { |