UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

18 lines (15 loc) 302 B
import ElementSingleState from './single-state'; /** * @ignore * 单选的 Action */ class ElementSingleSelected extends ElementSingleState { protected stateName: string = 'selected'; /** * 选中 */ public selected() { this.setState(); } } export default ElementSingleSelected;