我正在使用http://www.chartjs.org/中的chart.js。
我想绘制一个饼图,但没有显示任何内容。我设法绘制折线图,因此加载了Javascript。
HTML
<!-- Chart -->
<script type="text/javascript" src="_javascripts/chart/Chart.min.js"></script>
<!-- //Chart-->
<canvas id="browsersChart" width="400" height="100"></canvas>
<script>
var ctx = document.getElementById("browsersChart");
var myChart = new Chart(ctx, {
type: 'pie',
data: {
datasets: [{
label: 'Browsers',
data: [14, 2, 2, 2, 1],
backgroundColor: [
window.chartColors.red,
window.chartColors.orange,
window.chartColors.yellow,
window.chartColors.green,
window.chartColors.blue,
],
}],
labels: [
"Chrome"
"Firefox"
""
"MSIE"
"Mobile Safari"
]
},
options: {
responsive: true
}
};
</script>
答案 0 :(得分:1)
你的代码中有一些拼写错误。
在标签部分,每个标签后都需要逗号:
labels: [
"Chrome", // These commas at the end need added.
"Firefox",
"",
"MSIE",
"Mobile Safari"
]
您还需要在图表声明的最后添加)
:
options: {
responsive: true
}
}); // The rounded bracket here needs added
将来,您应该在浏览器中使用开发工具。 “控制台”选项卡将告诉您有关这些错误的信息。它确切地解释了哪一行有错误。
在解决这些错别字后,我得到了一张与预期相同的饼图。