You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2019/10/24 08:56:26 UTC

[GitHub] [incubator-echarts] wushu843639932 edited a comment on issue #11471: 有polygons3D示例参考下吗

wushu843639932 edited a comment on issue #11471: 有polygons3D示例参考下吗
URL: https://github.com/apache/incubator-echarts/issues/11471#issuecomment-545793279
 
 
   polygons3D可以效果可以实现吗?我填写配置了选项后为啥echarts-gl.js报错;polygons3D需要配合地图吗?
   代码片段
   ```js
   var option3D = {
                   series:[{
                       type: 'polygons3D', // 绘制多边形3d
                       multiPolygon:true,
                       itemStyle:{
                           color:'#900'
                       },
                       emphasis:{
                           itemStyle:{
                               color:'#000'
                           }
                       },
                       data: [{
                           coords: [[0, 0], [100, 0], [100, 100], [0, 100]],
                           height: 3
                       }, {
                           coords: [[50, 0], [100, 100], [0, 100]],
                           height: 3
                       }]
                   }]
               }
               myChart.setOption(option3D);
   ```

----------------------------------------------------------------
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: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org