【发布时间】:2019-11-14 02:57:05
【问题描述】:
我有一个交互式谷歌折线图,它显示用户选择的两个不同年份之间的历史海平面数据。该图表还显示所选期间的线性和多项式趋势线。可用的历史数据范围为 1904 年至 2018 年(含)。但是,用户可以选择从 1904 到 2120(含)的任何开始年份和结束年份。如果选择 2018 年之后的结束年份,图表会显示截至 2018 年的可用历史数据,然后将两条趋势线延伸以显示截至用户所选年份的预测海平面。
这似乎可以正常工作,直到两个选定的年份都超过 2018 年,即 2020 年和 2056 年抛出错误(“无法读取 null 的属性'top'”),因为它无法从包含没有观察到的数据。目前,我正在使用一个错误处理程序来解决这个问题,该处理程序在发生这种情况时会启动并显示一条警告消息,告知用户他们不能选择大于 2018 年的开始年份。然后页面重新加载,数字范围过滤器默认返回分别到 1904 年和 2018 年的开始和结束年份,这并不理想。我想做的是限制用户选择不超过 2018 年的开始年份,但数字范围过滤器控件中似乎没有选项/设置来执行此操作。有什么想法吗?
我的代码:
<html>
<script src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {
packages: ['controls']
}).then(initialize);
function initialize() {
var query = new google.visualization.Query('https://docs.google.com/spreadsheets/d/1vn1iuhsG33XzFrC4QwkTdUnxOGdcPQOj-cuaEZeX-eA/edit#gid=0');
query.send(drawDashboard);
}
function drawDashboard(response) {
var data = response.getDataTable();
//Asign units of 'mm' to data.
var formatMS = new google.visualization.NumberFormat({
pattern: '# mm'
});
// format data into mm.
for (var colIndex = 1; colIndex < data.getNumberOfColumns(); colIndex++) {
formatMS.format(data, colIndex);
}
var YearPicker = new google.visualization.ControlWrapper({
controlType: 'NumberRangeFilter',
containerId: 'filter_div',
options: {
maxValue:2120,
filterColumnLabel: 'Year',
ui: {
cssClass: 'filter-date',
format: {pattern: '0000'},
labelStacking: 'vertical',
allowTyping: false,
allowMultiple: false
}
},
"state": {"lowValue": 1904, "highValue": 2018},
});
google.visualization.events.addListener(YearPicker, 'statechange', filterChange);
var MSLChart = new google.visualization.ChartWrapper({
chartType: 'LineChart',
containerId: 'chart_div',
dataTable: data,
options: {
fontSize: '14',
title: 'Timbucktoo Annual Mean Sea Level Summary',
hAxis: {title: 'Year', format: '0000'},
vAxis: {title: 'Height above Chart Datum (mm)', format:'###0'},
height: 600,
chartArea: {height: '81%', width: '85%', left: 100},
legend: {position: 'in', alignment: 'end', textStyle: {fontSize: 13}},
colors: ['blue'],
trendlines: {
0: {
type: 'polynomial',
degree: 2,
color: 'green',
visibleInLegend: true,
},
1: {
type: 'linear',
color: 'black',
visibleInLegend: true,
},
},
series: {
0: { visibleInLegend: true },
1: { visibleInLegend: false },
},
},
view: {columns: [0,1,2]}
});
google.visualization.events.addOneTimeListener(MSLChart, 'ready', filterChange);
function filterChange() {
// get chart layout
var chartLayout = MSLChart.getChart().getChartLayoutInterface();
// get y-axis bounds
var yAxisCoords = {min: null, max: null};
var lineIndex = 0;
var boundsLine = chartLayout.getBoundingBox('line#' + lineIndex);
try {
do {
yAxisCoords.max = yAxisCoords.max || boundsLine.top;
yAxisCoords.max = Math.min(yAxisCoords.max, boundsLine.top);
yAxisCoords.min = yAxisCoords.min || (boundsLine.top + boundsLine.height);
yAxisCoords.min = Math.max(yAxisCoords.min, (boundsLine.top + boundsLine.height));
lineIndex++;
boundsLine = chartLayout.getBoundingBox('line#' + lineIndex);
} while (boundsLine !== null);
}
catch (error) {alert("Please choose a start year less than or equal to 2018");
window.location.reload(false);
exit;
}
var state = YearPicker.getState();
var EndYear = state.highValue;
// re-draw chart
MSLChart.setOption('vAxis.viewWindow.max', chartLayout.getVAxisValue(yAxisCoords.max));
MSLChart.setOption('vAxis.viewWindow.min', chartLayout.getVAxisValue(yAxisCoords.min));
MSLChart.setOption('hAxis.viewWindow.max', EndYear);
MSLChart.draw();
google.visualization.events.addOneTimeListener(MSLChart.getChart(), 'ready', filterChange);
}
var dashboard = new google.visualization.Dashboard(
document.getElementById('dashboard_div')
).bind(YearPicker, MSLChart).draw(data);
}
</script>
<div id="dashboard_div">
<div id="chart_div"></div>
<div id="filter_div"></div>
</div>
</html>
【问题讨论】:
标签: javascript controls google-visualization trendline