我正在尝试使用 Google Charts API 创建仪表板。
仪表板包括一个类型为 ChartRangeFilter 的 ControlWrapper 和两个 ChartWrapper(LineChart 和 Table)。此设置运行良好,但我想添加一个附加项。
LineChart 应显示整个数据集,表仅显示其中的一部分。例如,我有 10 行,在表中只应显示前 8 行。
这是我当前的 ControlWrapper:
control = new google.visualization.ControlWrapper({
'controlType': 'ChartRangeFilter',
'containerId': 'control',
'options': {
'filterColumnIndex': 0,
'ui': {
'chartType': 'LineChart',
'chartOptions': {
'chartArea': {'width': '95%'},
'hAxis': {'baselineColor': 'none'}
},
'chartView': {
'columns': [0,1]
},
'minRangeSize': 86400000
}
}
});
这是表:
chart = new google.visualization.ChartWrapper({
'chartType': 'Table',
'containerId': 'table',
'options': {
width: 470,
height: 340,
sortColumn: 0,
sortAscending: false
},
'view': {
'columns': [0, 1]
//,'rows': [0,1,2,3,4,5,6]
}
});
当我在表定义中取消注释行“//,'rows': [0,1,2,3,4,5,6]”时,当我移动 ControlWrapper 的滑块时出现错误:
Invalid row index 6. Should be in the range [0-5]
有没有办法让这个工作?
原因是(在此示例中)最后两行中仅是第 3 列中的数据,该数据仅显示在 LineChart 中,而未显示在表中。
提前致谢!
//编辑:
这是一个示例页面: http ://circlecount.com/test.chart.range.php
这是代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.1//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-2.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" version="XHTML+RDFa 1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/1999/xhtml http://www.w3.org/MarkUp/SCHEMA/xhtml-rdfa-2.xsd" lang="de" xml:lang="de" dir="ltr" xmlns:og="http://ogp.me/ns#" >
<head>
<script src="http://www.google.com/jsapi?key=" type="text/javascript"></script>
<script type="text/javascript">google.load("jquery", "1.7.1");</script>
</head>
<body>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart', 'table', 'controls']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(fctDrawChart);
var control, chart;
function fctDrawChart() {
//follower
var data = new google.visualization.DataTable();
var myTempDate = new Date();
data.addColumn('date', 'Day');
data.addColumn('number', 'Followers');
data.addRows(10);
data.setCell(0, 0, new Date('11/07/2011'));
data.setCell(0, 1, 11);
data.setCell(1, 0, new Date('11/08/2011'));
data.setCell(1, 1, 222);
data.setCell(2, 0, new Date('11/09/2011'));
data.setCell(2, 1, 1242);
data.setCell(3, 0, new Date('11/10/2011'));
data.setCell(3, 1, 1420);
data.setCell(4, 0, new Date('11/11/2011'));
data.setCell(4, 1, 1609);
data.setCell(5, 0, new Date('11/12/2011'));
data.setCell(5, 1, 1676);
data.setCell(6, 0, new Date('11/13/2011'));
data.setCell(6, 1, 1734);
data.setCell(7, 0, new Date('11/14/2011'));
data.setCell(7, 1, 1773);
data.setCell(8, 0, new Date('11/15/2011'));
data.setCell(8, 1, 1857);
data.setCell(9, 0, new Date('11/16/2011'));
data.setCell(9, 1, 1874);
var dataView = new google.visualization.DataView(data);
dataView.setColumns([0, 1]);
var dashboard = new google.visualization.Dashboard(document.getElementById('dashboard'));
control = new google.visualization.ControlWrapper({
'controlType': 'ChartRangeFilter',
'containerId': 'control',
'options': {
'filterColumnIndex': 0,
'ui': {
'chartType': 'LineChart',
'chartOptions': {
'chartArea': {'width': '95%'},
'hAxis': {'baselineColor': 'none'}
},
'chartView': {
'columns': [0,1]
},
'minRangeSize': 86400000
}
}
});
google.visualization.events.addListener(control, 'statechange', function() {
$("#periodSelector").val("custom");
});
chart = new google.visualization.ChartWrapper({
'chartType': 'Table',
'containerId': 'table',
'options': {
width: 470,
height: 340,
sortColumn: 0,
sortAscending: false
},
'view': {
'columns': [0, 1]
,'rows': [0,1,2,3,4,5,6]
}
});
chart2 = new google.visualization.ChartWrapper({
'chartType': 'LineChart',
'containerId': 'chart',
'options': {
width: 470,
height: 340,
sortColumn: 0,
sortAscending: false
},
'view': {
'columns': [0, 1]
}
});
dashboard.bind(control, chart);
dashboard.bind(control, chart2);
dashboard.draw(data);
}
</script>
<div id='dashboard' >
<div id='table' style='width:240px;height:400px;'></div>
<div id='chart' style='width:240px;height:400px;'></div>
<div id='control' style='width:840px;height:40px;'></div>
</div>
</div>
</body>
</html>
我想要得到: - 整个时期(10 天)的图表 - 仅前 7 天的表格 - 整个时期(10 天)的 ControlWrapper,控制图表和表格
我希望这能让我的问题更清楚。如果没有,请给我一个备注。
提前致谢!
更新: 有了 jmac 的想法,我得到了它使用以下功能:
google.visualization.events.addListener(control, 'statechange',
function(event) {
if (control.getState()["range"]["end"] > myLastRealDate) {
var myRowsArr = new Array();
var myTempDate = control.getState()["range"]["start"];
for (var i=0;i<myLastRealRow-(myDateArr[(myTempDate.getMonth()+1)+"/"+myTempDate.getDate()+"/"+myTempDate.getFullYear()]);i++) {
myRowsArr.push(i);
}
chart.setView({'rows': myRowsArr});
}
else {
chart.setView({'rows': null});
}
});
您可以在这里找到一个工作示例:http: //circlecount.com/test.chart.range.php