YuriGor opened a new issue #9194: axisLine.show doesn't work in the gauge
URL: https://github.com/apache/incubator-echarts/issues/9194
 
 
   axisLine.show doesn't work in the gauge
   Example from 
[docs](https://ecomfe.github.io/echarts-examples/public/editor.html?c=gauge):
   ```
   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);
   
   ```

----------------------------------------------------------------
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]

Reply via email to