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/08/17 05:25:14 UTC

[GitHub] yangdan8 commented on issue #8843: x轴和y轴处不应该画分隔线splitLine

yangdan8 commented on issue #8843: x轴和y轴处不应该画分隔线splitLine
URL: https://github.com/apache/incubator-echarts/issues/8843#issuecomment-413761113
 
 
   option = {
       xAxis: {
           type: 'category',
           data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
           splitLine: {
               show: true,
               lineStyle: {
                   width: 5,
                   color: ['green']
               }
           }
       },
       yAxis: {
           type: 'value',
           splitLine: {
               show: true,
               lineStyle: {
                   width: 5,
                   color: ['green']
               }
           }
       },
       series: [{
           data: [820, 932, 901, 934, 1290, 1330, 1320],
           type: 'line',
           smooth: true
       }]
   };

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