我实际上正在使用javascript插件chartjs(在框架Symfony 3上)开发一个应用程序,我意识到当我们在页面准备好之前创建一个图表时,它正确显示了图例,但是当我创建其他图表时点击按钮(在document.ready之后)隐藏的图例。
为了说明我的问题,当我这样做时:
// the chart is draw with the legend
drawChart();
// The chart is draw without the legend
$(document).ready(function() {
drawChart();
});
你有没有遇到过这个问题?有解决方案吗?
非常感谢所有需要时间帮助我的人!