zz-chart
Version:
Alauda Chart components by Alauda Frontend Team
26 lines • 496 B
JavaScript
import { Action } from './action.js';
/**
* Tooltip 显示隐藏的 Action
* @ignore
*/
export class TooltipAction extends Action {
get name() {
return 'tooltip';
}
get component() {
return this.view.components.get('tooltip');
}
/**
* 显示 Tooltip
*/
show() {
// this.component.showTooltip()
}
/**
* 隐藏 Tooltip
*/
hide() {
// this.component.hideTooltip();
}
}
//# sourceMappingURL=tooltip.js.map