1
我正在使用Google圖表創建WaterFall圖表並嘗試顯示工具提示(而不是默認設置)。它可以在列圖中找到。向瀑布添加工具提示Google圖表
我試圖避免使用createCustomHTMLContent。任何方式做到這一點,而不創建自定義HTML內容
var data = google.visualization.arrayToDataTable([
['Sales 1', 0, 0, 38000, 38000, 'Tool Tip 1'],
['Sales 2', 38000, 38000, 55000, 55000, 'Tool Tip 2'],
['Sales 3', 55000, 55000, 77000, 77000, 'Tool Tip 3'],
['Exp 1', 77000, 77000, 66000, 66000, 'Tool Tip 4'],
['Exp 2', 66000, 66000, 22000, 22000, 'Tool Tip 5'],
['Profit', 0, 0, 22000, 22000, 'Tool Tip 6']
], true);
var options = {
legend: 'none',
bar: { groupWidth: '100%' },
title: title,
candlestick: {
fallingColor: { strokeWidth: 0, fill: '#a52714' }, // red
risingColor: { strokeWidth: 0, fill: '#0f9d58' } // green
}};
var chart = new google.visualization.CandlestickChart(document.getElementById('chart_div'));
chart.draw(data, options);