zz-chart
Version:
Alauda Chart components by Alauda Frontend Team
21 lines • 420 B
JavaScript
import { get } from 'lodash-es';
import { Action } from './action.js';
/**
* legend toggle
* @ignore
*/
export class BrushXAction extends Action {
get name() {
return 'brush-X';
}
get uPlot() {
return get(this.view.strategyManage.getStrategy('uPlot'), 'uPlot');
}
start() {
// do nothing.
}
end() {
// do nothing.
}
}
//# sourceMappingURL=brush-x.js.map