我正在尝试构建一个基本的条形图,但标题中出现了错误。我已使用 alert() 验证了我想要填充图表的数组是否包含数据,但语法仍然有些问题。有人可以检查一下并告诉我需要做些什么才能使图表生成吗? var ctx = document.getElementById('cvtree').getContext('2d');var chart = new Chart(ctx, {type: 'bar'
2017-08-03
嗨,我的 React 应用程序中有此代码:this.chart = new Chart(node, options);// adding data to the chart ...this.chart.destroy();this.chart = null;this.chart = new Chart(node, options);// adding data to the chart ...第二
2018-01-12
我刚刚在条形图中添加了一个图表 onclick 函数,该函数允许我根据单击的条形图执行操作 - 效果很好 - 但是(你知道有一个但是)它会禁用正常的图例 onclick 功能。我怎样才能同时拥有这两个 onclick 功能?我猜它可能类似于从图表 onclick 函数调用图例 onclick 回调函数,但细节超出了我目前的知识范围。我已经做到了这一点,但不确定调用默认处理程序的参数应该是什么。va
2017-12-08