sunan102 opened a new issue #11122: 
柱状图xAxis.axisLabel.interval设置为0时,最后一个x轴的文字会加粗
URL: https://github.com/apache/incubator-echarts/issues/11122
 
 
   ### Version
   4.2.1
   
   ### Steps to reproduce
   ```
   app.title = '坐标轴刻度与标签对齐';
   
   option = {
       color: ['#3398DB'],
       tooltip : {
           trigger: 'axis',
           axisPointer : {            // 坐标轴指示器,坐标轴触发有效
               type : 'shadow'        // 默认为直线,可选为:'line' | 'shadow'
           }
       },
       grid: {
           left: '3%',
           right: '4%',
           bottom: '3%',
           containLabel: true
       },
       xAxis : [
           {
               type : 'category',
               data : ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
               axisTick: {
                   alignWithLabel: true
               },
                           axisLabel: {
                               interval:0
                           }
           }
       ],
       yAxis : [
           {
               type : 'value'
           }
       ],
       series : [
           {
               name:'直接访问',
               type:'bar',
               barWidth: '60%',
               data:[10, 52, 200, 334, 390, 330, 220]
           }
       ]
   };
   
   ```
   
   ### What is expected?
   期望能修复此bug
   
   ### What is actually happening?
   最后一个bar的横坐标文字会加粗
   
   <!-- 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:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to