KunalGurav opened a new issue, #17209: URL: https://github.com/apache/echarts/issues/17209
### Version 5.2.2 ### Link to Minimal Reproduction _No response_ ### Steps to Reproduce  `option = { title: { text: 'Basic Radar Chart' }, legend: { data: ['Allocated Budget', 'Actual Spending'] }, radar: { // shape: 'circle', indicator: [ { name: 'Sales', 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', overflow:'truncate', ellipsis:'...', width:10, } }, 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' } ] } ] };` I have used above options as mentioned on the echarts examples. ### Current Behavior As one can see the axis name or indicators are overflowing and not truncating. ### Expected Behavior Axis name/ indicators should truncate and end with ellipsis ### Environment ```markdown Echart examples editor. https://echarts.apache.org/examples/en/editor.html?c=radar ``` ### 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]
