echarts信息

1.图标自适应

window.addEventListener("resize", function() {
    myChart.resize();
 });

2.x轴旋转

xAxis : [ {
       type : 'category',
       name : '单位',
       axisLabel : {
              interval : 0,
               rotate : 25
       },
        data : orgNameList
 } ],

3.legend:{top:'8.5%',right: 'right',right: '14%',}

4.图表的位置  grid:{top: '0%',bottom: '0%',left: '0%',}

5.隐藏坐标轴  axisLine: { show: false  },   axisTick: {show: false },    axisLabel: {show: false},

6.图表网格线样式   splitLine: {show: true, lineStyle: {color: '#F1F3F5',type: 'solid' }},

猜你喜欢

转载自blog.csdn.net/zx11_11/article/details/81330570