Skip to content

Commit 583335e

Browse files
committed
fix: pie label类型不兼容 Closes #1136
1 parent 67d2b2e commit 583335e

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## <small>1.1.6 (2020-06-05)</small>
2+
- 🐞fix: pieLabel类型不兼容 (#1132) ([884fd8d](https://github.com/antvis/g2plot/commit/884fd8d))
3+
14
## <small>1.1.5 (2020-05-28)</small>
25
- 🐞fix: 图例通过 margin 配置来对齐 (#1132) ([884fd8d](https://github.com/antvis/g2plot/commit/884fd8d)), closes [#1132](https://github.com/
36
antvis/g2plot/issues/1132)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@antv/g2plot",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"description": "An interactive and responsive charting library",
55
"keywords": [
66
"chart",

src/base/view-layer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export interface ViewConfig {
5757
color?: string | string[] | {};
5858
xAxis?: Axis;
5959
yAxis?: Axis;
60-
label?: Label;
60+
label?: Label | any;
6161
tooltip?: Tooltip;
6262
legend?: Legend;
6363
animation?: Animation | boolean;

0 commit comments

Comments
 (0)