IE11下echart图表出现凹进去的边框,解决办法,隐藏object。即:
1 | .resize-sensor{ |
2 | display : none !important ; |
3 | } |
1 | tooltip: { |
2 | trigger: 'item', |
3 | formatter: "{a} 标签换行 {b} : {c}", // 或者下边 |
4 | formatter: function(params){ |
5 | return params.name=="no"?"":(params.seriesName+" |
6 | "+params.name+" : "+params.value); |
7 | } |
8 | } |
01 | toolbox: { |
02 | show: true, |
03 | // itemSize:25, |
04 | // iconStyle:{ |
05 | // normal:{ |
06 | // borderColor:'#bdbdbd' |
07 | // } |
08 | // }, |
09 | right:20, |
10 | feature: { |
11 | //restore: {}, |
12 | saveAsImage: {backgroundColor:'#000000', icon : 'image://../sources/download.png?t=004', iconStyle:{emphasis:{borderColor:"#fff"}}}, // 保存图片的背景色backgroundColor |
13 | myTool : { |
14 | show : true, |
15 | title : '保存为图片', |
16 | icon : 'image://../sources/download.png?t=004', |
17 | iconStyle:{emphasis:{borderColor:"#fff"}}, |
18 | padding:30, |
19 | onclick : function (){ |
20 | html2canvas(document.getElementsByClassName('ant-card-body')[0]).then(function(canvas){ |
21 | let dC = document.getElementById("downtextcontainer"), dataurl = canvas.toDataURL('jpg'); |
22 | dC.href = dataurl; |
23 | dC.download = "map.jpg"; |
24 |
25 | if (window.VBArray) { |
26 | dC.click(); |
27 | } else if (document.createEvent) { |
28 | var ev = document.createEvent('MouseEvents'); |
29 | ev.initEvent('click', false, true); |
30 | dC.dispatchEvent(ev); |
31 | } |
32 | }); |
33 | } |
34 | }, |
35 | }, |
36 | color:['#cfb081','#fff2cd','#fbe5d7','#ededed','#dfebf7','#bdd7ee','#c2bdee','#dbbdee','#eebde4','#eebdd3'],//依次应用定义的颜色到饼图、雷达图、漏斗(柱图不适用这个) |
1 | series: [{ |
2 | name:seriesName, |
3 | type:'funnel', |
4 | sort: 'ascending',//[ default: 'descending' ] 数据排序, 可以取 'ascending', 'descending'。 |
5 | }] |
1 | grid: { |
2 | left: '3%', |
3 | right: '4%', |
4 | bottom: '3%', |
5 | containLabel: true |
6 | }, |