1. 程式人生 > >echarts中toolbox的顏色設定及圖示的自適應,隨螢幕大小而變化圖示大小

echarts中toolbox的顏色設定及圖示的自適應,隨螢幕大小而變化圖示大小

toolbox: {
                show: true,
                feature: {
                    dataView: {readOnly: false},
                    restore: {},
                    saveAsImage: {}
                },
                iconStyle:{
                    normal:{
                      color:'white',//設定顏色
                    }
                }

            },

myChart4.setOption(option);
  $(window).resize(function(){
        myChart4.resize();
    });
  window.onresize = myChart4.resize();