We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
axisLine.show doesn't work in the gauge Example from docs:
option = { tooltip : { formatter: "{a} <br/>{b} : {c}%" }, toolbox: { feature: { restore: {}, saveAsImage: {} } }, series: [ { name: '业务指标', type: 'gauge', detail: {formatter:'{value}%'}, data: [{value: 50, name: '完成率'}], axisLine: {"show": false} } ] }; setInterval(function () { option.series[0].data[0].value = (Math.random() * 100).toFixed(2) - 0; myChart.setOption(option, true); },2000);
The text was updated successfully, but these errors were encountered:
axisLine.show option implemented for Gauge
e09fae6
As described in apache#9194 - echarts ignores axisLine.show option. Support for this option added by this commit.
Successfully merging a pull request may close this issue.
axisLine.show doesn't work in the gauge
Example from docs:
The text was updated successfully, but these errors were encountered: