谷歌交互式图表与图像自定义html工具提示

Google Interactive Charts with images as custom html tooltip

本文关键字:自定义 html 工具提示 图像 交互式 谷歌      更新时间:2023-09-26

好吧,我是新手,所以请原谅我。我试图创建一个谷歌交互式折线图与自定义的HTML工具提示,从网络周围的其他来源的图像。但我不能让它工作;它甚至不会出现。这是我目前所做的(由developers.google.com指导):

<html>
  <head>
    <!--Load the AJAX API-->
    <script type="text/javascript" src="https://www.google.com/jsapi">    </script>
    <script type="text/javascript">
      // Load the Visualization API and the chart package.
      google.load('visualization', '1.0', {'packages':['corechart']});
      // Set a callback to run when the Google Visualization API is loaded.
      google.setOnLoadCallback(drawChart);
      // Callback that creates and populates a data table, 
      // instantiates the chart, passes in the data and
      // draws it.
      function drawChart() {
      // Create the data table.
      var dataTable = new google.visualization.DataTable();
      dataTable.addColumn('string', 'Date');
      dataTable.addColumn('number', 'Slices');
      dataTable.addColumn({'type': 'string', 'role': 'tooltip', 'p': {'html': true}});
      dataTable.addRows([
        ['January 1, 2015', 3, '<img width=100px src="https://upload.wikimedia.org/wikipedia/commons/2/28/Flag_of_the_USA.svg">'],
        ['January 2, 2015', 2, '<img width=100px src="https://upload.wikimedia.org/wikipedia/commons/2/28/Flag_of_the_USA.svg">'],
        ['January 3, 2015', 5, '<img width=100px src="https://upload.wikimedia.org/wikipedia/commons/2/28/Flag_of_the_USA.svg">'], 
        ['January 4, 2015', 4, '<img width=100px src="https://upload.wikimedia.org/wikipedia/commons/2/28/Flag_of_the_USA.svg">'],
        ['January 5, 2015', 2, '<img width=100px src="https://upload.wikimedia.org/wikipedia/commons/2/28/Flag_of_the_USA.svg">']
      ]);
      // Set chart options
      var options = {
                     tooltip. {isHtml: true},
                     focusTarget: 'category',
                     'title':'How Much Pizza I Ate',
                     'width':900,
                     'height':400,
                     legend: { position: 'bottom' }
    };
      // Instantiate and draw our chart, passing in some options.
      var chart = new   google.visualization.LineChart(document.getElementById('chart_div'));
      chart.draw(dataTable, options);
    }
    </script>
  </head>

我知道我可能做错了什么。如果有人帮忙,我会很感激的。谢谢你!

错误:

 tooltip. {isHtml: true}
应:

 tooltip: {isHtml: true}

如果这不能解决问题,也试着把你的回调调到load:

google.load('visualization', '1', {"callback" : drawChart, 'packages': ["corechart"]});
//google.setOnLoadCallback(drawChart);