Skip to content

Commit

Permalink
fix chart event api
Browse files Browse the repository at this point in the history
  • Loading branch information
hm.hm committed Aug 3, 2018
1 parent fc3878d commit 541bd37
Showing 1 changed file with 4 additions and 33 deletions.
37 changes: 4 additions & 33 deletions doc/api/chart.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,37 +270,8 @@ const style={fontSize: '12'}
+ data:选中图形代表的数据,可能为空;
+ geom:选中的图形,可能为空。

### 7、onItemSelected

图表元素被选中时触发。

* *ev*: 事件触发时返回的对象,包含以下属性
+ shape:选中的图形;
+ data:选中图形中的数据;
+ geom:所选中的图表图层。

### 8、onItemUnselected

图表元素取消选中时触发。

* *ev*: 事件触发时返回的对象,包含以下属性
+ shape:取消选中的图形;
+ data:取消选中图形代表的数据;
+ geom:所选中的图表图层。

### 9、onItemSelectedChange

图表元素选中发生改变时触发。

* ev: 事件触发时返回的对象,包含以下属性
+ shape:选中的图形;
+ data:选中图形代表的数据;
+ preShape:之前选中的图形;
+ preData:选中图形代表的数据;
+ geom:所选中的图表图层。

<span id="onTooltipChange"></span>
### 10、onTooltipChange
### 7、onTooltipChange

tooltip 信息更新改变的时候触发。

Expand Down Expand Up @@ -337,7 +308,7 @@ tooltip 信息更新改变的时候触发。
/>
```

### 11、onTooltipShow
### 8、onTooltipShow

tooltip 显示时触发。

Expand All @@ -346,14 +317,14 @@ tooltip 显示时触发。
+ x: 画布上的 x 坐标;
+ y: 画布上的 y 坐标。

### 12、onTooltipHide
### 9、onTooltipHide

tooltip 隐藏或者消失时触发。

* ev:事件触发时返回的对象,包含以下属性:
+ tooltip: 当前生成的 tooltip 对象。

### 13、图形元素事件
### 10、图形元素事件
图形元素事件属性名 = on + 图形元素名称 + 基础事件名。

- 图形元素名称有:
Expand Down

0 comments on commit 541bd37

Please sign in to comment.