2

我正在尝试向气泡图添加自定义工具提示,以替换默认工具提示。我已按照文档站点(此处)的说明向 DataTable 添加了一个新string列,其中包含role: 'tooltip'. 但是,您可以在以下 JS fiddle 示例中看到,自定义工具提示内容不会呈现。图表仍显示默认工具提示。

任何人都知道我还需要做什么才能显示此自定义工具提示内容吗?

http://jsfiddle.net/MPBmY/2/

4

2 回答 2

2

我最终制作了一个运行良好的自定义工具提示弹出窗口。

假设气泡图的 div 定义如下:

<div id="bubble_chart_div"></div>

然后我使用了下面的 JavaScript。请注意,我遗漏了有关如何设置您的谷歌图表数据和加载谷歌图表包的内容。此代码仅显示如何获取自定义工具栏弹出窗口。

    var mouseX;
    var mouseY;
    $(document).mousemove( function(e) {
        mouseX = e.pageX; 
        mouseY = e.pageY;
    });

    /*
     *
     *instantiate and render the chart to the screen
     *
     */
    var bubble_chart = new google.visualization.BubbleChart(document.getElementById('bubble_chart_div'));
    bubble_chart.draw(customer_product_grid_data_table, options);

    /*
     * These functions handle the custom tooltip display
     */
    function handler1(e){
        var x = mouseX;
        var y = mouseY - 130;
        var a = 1;
        var b = 2;
        $('#custom_tooltip').html('<div>Value of A is'+a+' and value of B is'+b+'</div>').css({'top':y,'left':x}).fadeIn('slow');
    }
    function handler2(e){
        $('#custom_tooltip').fadeOut('fast');
    }

    /*
     *  Attach the functions that handle the tool-tip pop-up
     *  handler1 is called when the mouse moves into the bubble, and handler 2 is called when mouse moves out of bubble
     */
    google.visualization.events.addListener(bubble_chart, 'onmouseover', handler1);
    google.visualization.events.addListener(bubble_chart, 'onmouseout', handler2);
于 2013-01-31T14:18:07.553 回答
1

如帮助文档底部所述:

目前,以下图表类型支持 HTML 工具提示:

  • 面积图
  • 条形图
  • 烛台图
  • 柱形图
  • 组合图
  • 折线图
  • 散点图

不幸的是,气泡图不包括在内,因此您无法向其中添加自定义 html 工具提示。如果您愿意,您可以编写自定义 javascript 来创建工具提示,但您不能使用现有功能来做您想做的事情。

于 2013-01-30T02:04:11.337 回答