您当前的位置: 首页 >  ar

236Echarts - 3D 柱状图(Global Population - Bar3D on Globe)

杨林伟 发布时间:2019-05-06 10:36:27 ,浏览量:4

效果图

在这里插入图片描述

源代码
$.getJSON("data-gl/asset/data/population.json", function (data) {

    data = data.filter(function (dataItem) {
        return dataItem[2] > 0;
    }).map(function (dataItem) {
        return [dataItem[0], dataItem[1], Math.sqrt(dataItem[2])];
    });

    option = {
        backgroundColor: '#000',
        globe: {
            baseTexture: "data-gl/asset/world.topo.bathy.200401.jpg",
            heightTexture: "data-gl/asset/world.topo.bathy.200401.jpg",
            shading: 'lambert',
            environment: 'data-gl/asset/starfield.jpg',
            light: {
                main: {
                    intensity: 2
                }
            },
            viewControl: {
                autoRotate: false
            }
        },
        visualMap: {
            max: 40,
            calculable: true,
            realtime: false,
            inRange: {
                colorLightness: [0.2, 0.9]
            },
            textStyle: {
                color: '#fff'
            },
            controller: {
                inRange: {
                    color: 'orange'
                }
            },
            outOfRange: {
                colorAlpha: 0
            }
        },
        series: [{
            type: 'bar3D',
            coordinateSystem: 'globe',
            data: data,
            barSize: 0.6,
            minHeight: 0.2,
            silent: true,
            itemStyle: {
                color: 'orange'
            }
        }]
    };

    myChart.setOption(option);
})
关注
打赏
1688896170
查看更多评论

杨林伟

暂无认证

  • 4浏览

    0关注

    3183博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文
立即登录/注册

微信扫码登录

0.1561s