fengyeheng opened a new issue #11905: 仪表盘不支持刻度旋转吗? URL: https://github.com/apache/incubator-echarts/issues/11905 ### Version 4.5.0 ### Steps to reproduce option = { tooltip : { formatter: "{a} <br/>{b} : {c}%" }, toolbox: { feature: { restore: {}, saveAsImage: {} } }, series: [ { name: '业务指标', type: 'gauge', detail: {formatter:'{value}%'}, data: [{value: 50, name: '完成率'}], axisLabel: { formatter: '{a|{value}kg}', verticalAlign: 'top', rich: { a: { color: 'blue', //旋转代码 rotate: 30 } } } } ] }; setInterval(function () { option.series[0].data[0].value = (Math.random() * 100).toFixed(2) - 0; myChart.setOption(option, true); },2000); ### What is expected? 刻度可以旋转 ### What is actually happening? 不能旋转 <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
