【发布时间】:2016-09-17 17:51:04
【问题描述】:
我有一个页面,我可以在其中动态加载不同的图表,这些图表会使用 SQL 表中的新数据进行自我更新。 它们有最大和最小限制,如果它们超出限制,我可以让折线图上的点改变颜色(如果太高或太低,它们会变成红色,否则它们会变成绿色)
遗憾的是,当我尝试更改图表动画选项或 bezierCurves 选项时,它没有响应,我查看了 chartjs 页面的文档,只能找到如何在创建图表时设置这些选项......我需要根据用户输入制作图表后,在基于间隔的函数上执行此操作......即
我有一组单选按钮: 动画 - 非动画 - bezierCurves - 没有 bezierCurves
看图:)
他们每个人都将他们的可敬变量设置为真/假,这取决于他们是否被检查。 然后,每次更新图表时,我都会尝试将选项更改为变量的值(如果它们与旧的不同)
让我给你一些代码来澄清:)
更新功能:
// Standard values for all charts
$old_animation = true;
$old_curved = true;
// Start Update funtion for the test chart
setInterval(function update() {
// Set the new options value from the entered user input (on the site)
$curved = $('#curved').val();
$animation = $('#animation').val();
if ( $old_animation != $animation || $old_curved != $curved) {
test_chart.options.animation = $animation;
test_chart.options.bezierCurves = $curved;
// Tried the following as well
//test_chart.animation = $animation;
//test_chart.options.animation = $animation;
$old_animation = $animation;
$old_curved = $curved;
}
// Set dataset point 0 value to that of point 1, point 1 to that of point 2 and so on...
test_chart.datasets[0].points[0].value = test_chart.datasets[0].points[1].value;
test_chart.datasets[0].points[1].value = test_chart.datasets[0].points[2].value;
test_chart.datasets[0].points[2].value = test_chart.datasets[0].points[3].value;
test_chart.datasets[0].points[3].value = test_chart.datasets[0].points[4].value;
test_chart.datasets[0].points[4].value = test_chart.datasets[0].points[5].value;
test_chart.datasets[0].points[5].value = test_chart.datasets[0].points[6].value;
test_chart.scale.xLabels[0] = test_chart.scale.xLabels[1];
test_chart.scale.xLabels[1] = test_chart.scale.xLabels[2];
test_chart.scale.xLabels[2] = test_chart.scale.xLabels[3];
test_chart.scale.xLabels[3] = test_chart.scale.xLabels[4];
test_chart.scale.xLabels[4] = test_chart.scale.xLabels[5];
test_chart.scale.xLabels[5] = test_chart.scale.xLabels[6];
// Get the latest SQL value from the live feed div (hidden) and put that in the last data point
$live_test = $('#live_test').html();
$live_test = parseInt($live_test);
$live_test = $live_test / <?php echo $column_numerator; ?>;
// Get the last update time for the label of the last data point
$live_updated = $('#live_updated').html().substr(11);
test_chart.scale.xLabels[6] = $live_updated;
test_chart.datasets[0].points[6].value = $live_test;
console.log('Latest test value = ' + $live_test + ' this has been updated @: ' + $live_updated);
temperature_chart.update();
}, 4000);
【问题讨论】:
标签: javascript jquery html class chart.js