import ChartPie11 from '../../../src/chart/pie/ChartPie11/ChartPie11.js'; import title from "../../../src/chart/commonOptions/title"; import legend from "../../../src/chart/pie/selfOptions/legend"; let chart=new ChartPie11(document.getElementsByClassName('c1')[0],{}); window.addEventListener("resize",()=>{ chart.resize(); }); // setTimeout(()=>{ // chart.setOption({ // title: {}, // legend: legend.option, // color:['#fe6a01', '#54b3ea', '#ffffff','#00fcff','#0d67a1'], // pie11: { // center: { // x:"50%", // y:"50%" // }, // width:"70%", // sectorR0:20, // detailStyle:{ // show:true, // fontWeight:'normal', // fontSize:14, // numShow:0 // }, // }, // series: [{ // name: '类别1', // value: 10 // }, { // name: "类别2", // value: 15 // }, { // name: "类别3", // value: 25 // }, { // name: "类别4", // value: 90 // }, { // name: "类别5", // value:20 // }], // bg:{ // backgroundColor:"#0b162f" // }, // }) // },3000)