(registers)
| 81559 | } |
| 81560 | |
| 81561 | function install$A(registers) { |
| 81562 | use(install$s); |
| 81563 | registers.registerComponentModel(TooltipModel); |
| 81564 | registers.registerComponentView(TooltipView); |
| 81565 | /** |
| 81566 | * @action |
| 81567 | * @property {string} type |
| 81568 | * @property {number} seriesIndex |
| 81569 | * @property {number} dataIndex |
| 81570 | * @property {number} [x] |
| 81571 | * @property {number} [y] |
| 81572 | */ |
| 81573 | |
| 81574 | registers.registerAction({ |
| 81575 | type: 'showTip', |
| 81576 | event: 'showTip', |
| 81577 | update: 'tooltip:manuallyShowTip' |
| 81578 | }, // noop |
| 81579 | function () {}); |
| 81580 | registers.registerAction({ |
| 81581 | type: 'hideTip', |
| 81582 | event: 'hideTip', |
| 81583 | update: 'tooltip:manuallyHideTip' |
| 81584 | }, // noop |
| 81585 | function () {}); |
| 81586 | } |
| 81587 | |
| 81588 | var DEFAULT_TOOLBOX_BTNS = ['rect', 'polygon', 'keep', 'clear']; |
| 81589 | function brushPreprocessor(option, isNew) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…