()
| 3458 | self.destroy = destroy; |
| 3459 | |
| 3460 | function _init() { |
| 3461 | fire("init", opts, data); |
| 3462 | |
| 3463 | setData(data || opts.data, false); |
| 3464 | |
| 3465 | if (pendScales[xScaleKey]) |
| 3466 | setScale(xScaleKey, pendScales[xScaleKey]); |
| 3467 | else |
| 3468 | autoScaleX(); |
| 3469 | |
| 3470 | shouldSetSelect = select.show && (select.width > 0 || select.height > 0); |
| 3471 | shouldSetCursor = shouldSetLegend = true; |
| 3472 | |
| 3473 | _setSize(opts.width, opts.height); |
| 3474 | } |
| 3475 | |
| 3476 | series.forEach(initSeries); |
| 3477 |