liuhaosheng opened a new issue, #17414:
URL: https://github.com/apache/echarts/issues/17414
### Version
5.3.0
### Link to Minimal Reproduction
_No response_
### Steps to Reproduce
configure:
option = {
title: {
text: 'Basic Radar Chart'
},
legend: {
data: ['Allocated Budget', 'Actual Spending']
},
radar: {
// shape: 'circle',
indicator: [
{ name: 'Administration', max: 6500 },
{ name: 'Administration', max: 16000 },
{ name: 'Information Technology', max: 30000 },
{ name: 'Customer Support', max: 38000 },
{ name: 'Development', max: 52000 },
{ name: 'Marketing', max: 25000 }
],
axisName: {
color: "red",
width: 10,
overflow: "truncate",
},
},
series: [
{
name: 'Budget vs spending',
type: 'radar',
data: [
{
value: [4200, 3000, 20000, 35000, 50000, 18000],
name: 'Allocated Budget'
},
{
value: [5000, 14000, 28000, 26000, 42000, 21000],
name: 'Actual Spending'
}
]
}
]
};
### Current Behavior
axisName 设置 width: 10, 和 overflow: "truncate", 完全不起作用
### Expected Behavior
axisName 设置 width: 10, 和 overflow: "truncate", 应该超出部分默认显示 ...
### Environment
```markdown
- OS: intel i7
- Browser: 103.0.5060.114
- Framework: vue@2
```
### Any additional comments?
_No response_
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]