echarts饼图通过grid设置位置不生效。饼图设置位置 电脑版发表于:2024/3/18 11:00 grid 记得是平面直角坐标系的意思,而仪表盘、饼图这种,是通过设置中心点位置的方式定位的。所以仪表盘、饼图这种应该这样设置 ``` series: [ { type: 'gauge', radius: '75%', data: [{value: 50, name: '完成率'}], // 设置仪表盘组件的位置 center: ['50%', '50%'], // 设置仪表盘组件的大小 // 例如:200px * 200px // width: 200, height: 200 // 或者:50% * 50% width: '50%', height: '50%', ... } ], ``` 平面直角坐标系的话就可以用grid来设置位置 ``` grid: { top: 100, left: '3%', right: '3%', bottom: 100, containLabel: true }, ```