px.funnel中text的字体大小设置
时间: 2024-01-08 17:04:57 浏览: 72
d3-funnel:一个JavaScript库,用于使用D3.js框架呈现漏斗图
您可以通过设置 `textStyle` 属性来控制 px.funnel 中 `text` 的字体大小。例如:
```javascript
option = {
series: [{
type: 'funnel',
data: [...],
label: {
show: true,
position: 'inside',
textStyle: {
fontSize: 14 // 设置字体大小为14
}
}
}]
}
```
在上面的示例中,`textStyle` 中的 `fontSize` 属性被设置为 14,这会将 `text` 的字体大小设置为 14。您可以根据需要进行适当的更改。
阅读全文