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 2019/05/08 08:41:54 UTC

[GitHub] [incubator-echarts] magicdict opened a new issue #10419: 3维图增加ToolBox或者VisualMap就无法显示。不过保存的图片是正确的

magicdict opened a new issue #10419: 3维图增加ToolBox或者VisualMap就无法显示。不过保存的图片是正确的
URL: https://github.com/apache/incubator-echarts/issues/10419
 
 
   ### Version
   4.2.1
   
   ### Steps to reproduce
   //三维柱状图
     TwoCourseOption3D = {
       tooltip: {},
      toolbox: {
           'show': true,
           'feature': {
               'saveAsImage': {},
           }
       },
       xAxis3D: {
         type: 'category',
         name: "课程1",
         data: []
       },
       yAxis3D: {
         type: 'category',
         name: "课程2",
         data: []
       },
       zAxis3D: {
         type: 'value',
         name: "人数"
       },
       grid3D: {
         boxWidth: 200,
         boxDepth: 80,
         light: {
           main: {
             intensity: 1.2
           },
           ambient: {
             intensity: 0.3
           }
         }
       },
       series: [{
         type: 'bar3D',
         data: [],
         shading: 'color',
   
         label: {
           formatter: '{c}'
         },
   
         itemStyle: {
           opacity: 0.4
         },
       }]
     }
   
   ### What is expected?
   图表显示出来
   
   ### What is actually happening?
   图表不能看到,但是鼠标点上去,好像是存在的。保存的图片也是正确的。
   
   <!-- 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:
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