1
私のチャットはブラウザの画面に表示されません。私は流星とchart.jsを使用してもonRenderedまたはonCreatedでそれをやろうとしているが、それは私のために働いていない。あなたは「($」ログコンソールの場合>流星の中のchart.jsを使って私のグラフがブラウザ画面に表示されない
Template.home.rendered = function() {
Deps.autorun(function() { drawChart(); });
};
function drawChart() {
var oldCount = 2;
var newCount = 4;
var data = [{
value: newCount,
color: "#e53935",
highlight: "#c62828",
label: "New"
}, {
value: oldCount,
color: "#3949ab",
highlight: "#1a237e",
label: "Regular"
}];
var pieOptions = {
animation: false,
}
if ($("#myChart").get(0)) {
var ctx = $("#myChart").get(0).getContext("2d");
var myNewChart = new Chart(ctx);
new Chart(ctx).Pie(data, pieOptions);
}
}
家は私のテンプレート名