shivamsriva31093 opened a new issue #10153: Y Axis values are displayed but the 
graph does not appear 
URL: https://github.com/apache/incubator-echarts/issues/10153
 
 
   ### Version
   4.1.0-release
   
   ### Steps to reproduce
   Followed tutorial. Installed echarts in webpack 4   angular 7 project. 
Created one directive to faciliate the chart usage. It works fine in 
development build. But when I switch to production mode, Only grid lines and Y 
-Axis are visible, no chart appear. I get the following error on console:
   ```
   ERROR TypeError: Cannot read property '__ec_inner_8_0.83450' of undefined
       at vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:7834
       at h (vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:7554)
       at c (vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:7547)
       at e.createAxisLabels 
(vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:7609)
       at r.getViewLabels 
(vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:95432)
       at vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:382
       at o.axisTickLabel 
(vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:421)
       at o.add (vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:256)
       at Array.forEach (<anonymous>)
       at Object.y [as each] 
(vendors~main.b164bad6f3acc8308f3c.chunk.js:formatted:86246)
   
   ```
   EchartOptions:
   
   ```
   {
       title: {
         text: '某地区蒸发量和降水量',
         subtext: '纯属虚构'
       },
       tooltip: {
         trigger: 'axis'
       },
       legend: {
         data: ['蒸发量', '降水量']
       },
       toolbox: {
         show: true,
         feature: {
           mark: {show: true},
           dataView: {show: true, readOnly: false},
           magicType: {show: true, type: ['line', 'bar']},
           restore: {show: true},
           saveAsImage: {show: true}
         }
       },
       calculable: true,
       xAxis: [
         {
           type: 'category',
           data: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', 
'11月', '12月']
         }
       ],
       yAxis: [
         {
           type: 'value'
         }
       ],
       series: [
         {
           name: '蒸发量',
           type: 'bar',
           data: [2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 
6.4, 3.3],
           markPoint: {
             data: [
               {type: 'max', name: '最大值'},
               {type: 'min', name: '最小值'}
             ]
           },
           markLine: {
             data: [
               {type: 'average', name: '平均值'}
             ]
           }
         },
         {
           name: '降水量',
           type: 'bar',
           data: [2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 
6.0, 2.3],
           markPoint: {
             data: [
               {name: '年最高', value: 182.2, xAxis: 7, yAxis: 183, symbolSize: 
18},
               {name: '年最低', value: 2.3, xAxis: 11, yAxis: 3}
             ]
           },
           markLine: {
             data: [
               {type: 'average', name: '平均值'}
             ]
           }
         }
       ]
     }
   ```
   
   ### What is expected?
   The graphs should display as it is in development build  as shown in 
https://echarts.baidu.com/echarts2/doc/example/bar1.html#-en
   
   ### What is actually happening?
   Y Axis values are displayed but the graph does not appear
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. 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:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to