vision-yip opened a new issue #9776: 仪表盘图中设置axisTick.splitNumber左上角有异常显示 URL: https://github.com/apache/incubator-echarts/issues/9776 官方示例中: https://echarts.baidu.com/examples/editor.html?c=gauge option = { tooltip : { formatter: "{a} <br/>{b} : {c}%" }, toolbox: { feature: { restore: {}, saveAsImage: {} } }, series: [ { name: '业务指标', type: 'gauge', // 此处为添加项 axisTick: { splitNumber: 0 }, detail: {formatter:'{value}%'}, data: [{value: 50, name: '完成率'}] } ] }; setInterval(function () { option.series[0].data[0].value = (Math.random() * 100).toFixed(2) - 0; myChart.setOption(option, true); },2000);
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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]
