Chart.js: Dynamic Changing of Chart Type (Line to Bar as Example)(Chart.js:图表类型的动态变化(以Line to Bar为例))
问题描述
我正在尝试根据选择框更改热交换图表类型.如果数据需要更新,它就会改变.
I am trying to hot swap chart types based on select box changes. If data needs to be updated, it changes.
例如,在页面加载时,我会创建一个这样的图表:
So for example, on page load I create a chart like this:
var config = {
type: 'line',
data: {
labels: this.labels,
datasets: [{
label: 'Some Label',
data: this.values
}]
},
options: {
responsive: true
}
}
var context = document.getElementById('canvas').getContext('2d');
window.mychart = new Chart(context, config);
然后我将组合框更改为条形图.我在页面加载时使用条形图测试了数据,效果很好.
But then I change the combo box to a bar chart. I have tested the data with bar chart on page load, and it worked great.
这是我尝试更改图表的方式.
Here's how I am trying to change the chart.
window.mychart.destroy();
// chartType = 'bar'
config.type = chartType;
var context = document.getElementById('canvas').getContext('2d');
window.mychart = new Chart(context, config);
window.mychart.update();
window.mychart.render();
但是什么也没发生.折线图仍然存在.如何动态更改图表类型?(即使这意味着破坏和重新创建图表画布).
But nothing happens. The line chart remains. How can I dynamically change the chart type? (Even if it means destroying & re-creating the chart canvas).
更新
注意它看起来实际上是在破坏图表,但不断重绘折线图,即使我这样做 console.log(config.type);
并且它返回 bar
,而不是 line
Note it looks like it is actually destroying the chart, but keeps redrawing a line chart, even though I do console.log(config.type);
and it returns bar
, not line
推荐答案
修复
- 销毁旧图表(以移除事件侦听器并清除画布)
- 制作配置对象的深层副本
- 更改副本的类型
- 传递副本而不是原始对象.
这是一个有效的 jsfiddle 示例
示例概述:
var temp = jQuery.extend(true, {}, config);
temp.type = 'bar'; // The new chart type
myChart = new Chart(ctx, temp);
注意:使用 Chart.js 的 2.0.1 版
NOTE: Using version 2.0.1 of Chart.js
Chart.js 会修改您传入的配置对象.因此,您不能只更改config.type".您可以进入修改后的对象并将所有内容更改为您想要的类型,但保存原始配置对象要容易得多.
Chart.js modifies the config object you pass in. Because of that you can not just change 'config.type'. You could go into the modified object and change everything to the type you want, but it is much easier to just save the original config object.
这篇关于Chart.js:图表类型的动态变化(以Line to Bar为例)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Chart.js:图表类型的动态变化(以Line to Bar为例)
- 400或500级别的HTTP响应 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06