我正在使用ChartWrapper生成数据集的条形图。数据集来自dataSourceUrl(不是内部dataTable)。以下是源代码段:
var chart_wrap6 = new google.visualization.ChartWrapper({
'chartType' : 'BarChart',
'refreshInterval': 5,
'dataSourceUrl' : 'http://yourcompany.com/test.py',
'containerId' : 'bar_chart3',
'options' : {title: 'Title', vAxis: {title: 'Start Time'}, hAxis: {title: 'Time in minutes'} }
});
chart_wrap6.draw();
我想标记条形图。我查看https://developers.google.com/chart/interactive/docs/gallery/barchart#Labels建议使用角色:注释但我不知道在哪里以及如何使用它我的javascript代码。我们将非常感谢示例代码。
我在我的python代码中使用gviz_api
data_table = app.get_chain_elapsed_time_stat(chain_name)
print data_table.ToJSonResponse(req_id=req_id)
由于 作者Abhijit