1. 程式人生 > 其它 >echats隱藏座標軸和調整圖示位置

echats隱藏座標軸和調整圖示位置

技術標籤:echarts

//隱藏x軸
xAxis:{

show:false,

}
//隱藏y軸

yAxis:{

show:false,

}

//調整圖表位置
//數值單位可以寫px,也支援%
    grid: {
        top: '10%',
        left: '8%',
        right: '35%',
        bottom: '5%',
        containLabel: true //要生效必須設定為true
    }