Skip to content

Commit

Permalink
Merge pull request baidu#15 from baidu/master
Browse files Browse the repository at this point in the history
Repair the zindex value of arearange and area type maps
  • Loading branch information
李聪 authored May 3, 2018
2 parents ae7bd49 + 3f7e1f1 commit 03d1fe4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/index/component/trend.js
Original file line number Diff line number Diff line change
Expand Up @@ -1272,7 +1272,7 @@ export default class Trend extends Component {
optionAreaRange(item) {
item.lineWidth = 0;
item.color = 'rgb(240,255,240)';
item.zIndex = 1;
item.zIndex = 0;
item.enableMouseTracking = false;
item.showInLegend = true;
item.dataGrouping = {
Expand Down Expand Up @@ -1305,7 +1305,7 @@ export default class Trend extends Component {
optionArea(item) {
item.lineWidth = 0;
item.fillOpacity = 0.3;
item.zIndex = 0;
item.zIndex = 1;
item.enableMouseTracking = true;
item.dataGrouping = {
enabled: false
Expand Down

0 comments on commit 03d1fe4

Please sign in to comment.