You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2018/10/10 19:03:12 UTC

[GitHub] YuriGor opened a new issue #9194: axisLine.show doesn't work in the gauge

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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@echarts.apache.org
For additional commands, e-mail: dev-help@echarts.apache.org