echarts中的globe在使用scatter3D后,如何用自动的显示tooltip?

新手上路,请多包涵

使用了echarts-4.1.0,echarts-gl-1.1.1,在globe中我使用了scatter3D绘制散点图,在option中配置的tooltip可以正常显示,但使用dispatchAction就无法呼出tooltip,同样的方法我放在2D的图中就是正常的。

var globel = echarts.init(document.getElementById('globe'));
        
        const option = {
            // backgroundColor: '#000',
            visualMap: {
                show: false,
                min: 0,
                max: 60,
                inRange: {
                    symbolSize: [1.0, 10.0],
                    opacity:[1,0.5]
                }
            },
            tooltip: {
                trigger: 'item',
                alwaysShowContent:true,
                formatter: function(prams,d,callback){
                    return prams.value
                },
            },
            globe: {
                baseTexture: require('../assets/world.png'),
                globeOuterRadius: 100,
                displacementScale: 0.1,
                viewControl:{
                    autoRotate:false
                },
                postEffect:{
                    bloom:true,
                    screenSpaceAmbientOcclusion:true
                },
                shading: 'color',
                z: 9
            },
            series: {
                type: 'scatter3D',
                coordinateSystem: 'globe',
                blendMode: 'source-over',
                symbolSize: 2,
                itemStyle: {
                    // color: 'rgb(148, 148, 148)',
                    color:'#b4b4b4',
                    opacity: 1
                },
                data: data
            }
        }
*******************************
        globel.dispatchAction({
            type:'showTip',
            seriesIndex:0,
            dataIndex:1
        })
阅读 7.4k
2 个回答
新手上路,请多包涵

望解答,已经试过很多种方法后都无效

新手上路,请多包涵

貌似gl还不支持tooltip功能,如果可以,你可以用label来实现

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题