1234567891011121314151617181920212223242526272829303132 |
- let _PieOptions = {
- // color: ["#0090D5", "#E14C46", "#FAAF1E", "#59C152", "#2e6ae5"],
- color: ['#FFD75B', '#EEE'],
- calculable: true,
- series: [
- {
- name: 'Area',
- type: 'pie',
- center: ['50%', '50%'],
- radius: ['70%', '80%'],
- avoidLabelOverlap: false,
- silent: true,
- label: {
- normal: {
- textStyle: {
- color: '#333',
- align: 'left',
- fontSize: 20,
- lineHeight: 32,
- verticalAlign: 'middle',
- },
- position: 'center',
- formatter: [],
- rich: {},
- },
- },
- data: [],
- },
- ],
- }
- let PieOptions = JSON.parse(JSON.stringify(_PieOptions))
- export { PieOptions }
|