highcharts 如何调整饼图的位置
时间: 2023-09-25 15:12:50 浏览: 392
Highcharts动态实现曲线图和饼型图的展示
4星 · 用户满意度95%
要调整 Highcharts 饼图的位置,可以使用 chart 的 `plotOptions.pie.center` 属性,该属性用于设置饼图的中心点坐标。中心点坐标是一个数组,包含两个数字,分别表示横坐标和纵坐标,取值范围为 0 到 1。
例如,如果要将饼图的中心点坐标设置为 (50%, 50%),可以将 `plotOptions.pie.center` 属性设置为 `[0.5, 0.5]`,如下所示:
```
plotOptions: {
pie: {
center: [0.5, 0.5]
}
}
```
如果要将饼图的中心点坐标设置为 (30%, 70%),可以将 `plotOptions.pie.center` 属性设置为 `[0.3, 0.7]`,如下所示:
```
plotOptions: {
pie: {
center: [0.3, 0.7]
}
}
```
你可以根据需要调整饼图的中心点坐标,以改变饼图的位置。
阅读全文