自定义组件库-封装第三方图表,如echarts
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

index.js 438B

12345678910
  1. import chart from '../../../src/chart/echarts/CustomChartBar/CustomChartBar.js';
  2. import Utils from '../../utils.js';
  3. let config = new chart(document.querySelector('#container'), {getConfig:true}).getConfig();
  4. let styleConfig = config.styleConfig;
  5. let dataConfig = config.dataConfig;
  6. let option = config.fun.themeMerge(Utils.parseStyle(styleConfig), Utils.parseData(dataConfig));
  7. new chart(document.querySelector('#container'), option)