Skip to content

Commit

Permalink
Merge pull request #408 from lbay2015/master
Browse files Browse the repository at this point in the history
In the charts component, the X axis data is not updated when the icon is redrawn.
  • Loading branch information
zxy0728 authored Sep 28, 2018
2 parents ae3629f + a52adf2 commit 267a30b
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,13 @@ function AppHubChart(_chartsConfig){
}
else {
draw(arrayData,false);

/**
* 随着运行时的变化,改变config绘画的值,因为除去第一次,后续所有将不需要重绘
*
* 后续的reset 理论都是false
*/
chartObj.chart.config.chart["drawAction"]=false;
}
};

Expand Down

0 comments on commit 267a30b

Please sign in to comment.