@The-web-guy It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗
TRANSLATED
**TITLE**
[Bug] The end style of the dashboard progress bar does not take effect
Version
5.4.3
Link to Minimal Reproduction
borderCap: 'square'
Steps to Reproduce
option = { series: [ { type: 'gauge', center: ['50%', '60%'], radius: '64%', startAngle: 270, endAngle: -90, splitNumber: 4, min: 0, max: 80, itemStyle: { color: '#FFAB91', borderColor: '#fff', shadowColor: 'rgb(241, 234, 224)', shadowBlur: 15, shadowOffsetY: 5 }, progress: { show: true, width: 1, itemStyle: { width: 1, color: 'rgb(241, 234, 224)' } },
] }; setInterval(function () { const random = +(Math.random() * 80).toFixed(2); myChart.setOption({ series: [ { data: [ { value: 80 } ] }, { data: [ { value: 100 } ] }, { data: [ { value: random } ] }, ] }); }, 2000);
Current Behavior
仪表盘进度条末端样式有borderCap属性,但是设置后无效
Expected Behavior
想要将仪表盘进度条末端自定义样式
Environment
Any additional comments?
No response