Skip to content

Commit

Permalink
fix treemap and venn type
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Jun 29, 2015
1 parent 1b5cad4 commit 10081bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public Object roam() {
* 构造函数
*/
public Treemap() {
this.type(SeriesType.radar);
this.type(SeriesType.treemap);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/github/abel533/echarts/series/Venn.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Venn extends Series<Venn> {
* 构造函数
*/
public Venn() {
this.type(SeriesType.radar);
this.type(SeriesType.venn);
}

/**
Expand Down

0 comments on commit 10081bf

Please sign in to comment.