在vue中,使用echarts的自定義主題

Z_沿華發表於2018-01-22

1、安裝echarts,npm i echarts -S

2、在main.js裡引入echarts主題的js,一般在  node_modules---echarts---theme---macarons.js。  theme裡邊有各種各樣的主題,任意選一種,這裡我選的是macarons。引入:import  'echarts/theme/macarons.js'

3、在echarts初始化時,使用主題。let myChart01 = this.$echarts.init(document.getElementById('myChart01'),'macarons');

相關文章