admin管理员组文章数量:1419239
I'm trying to create a simple line graph with x,y coordinates but i'm getting a blank page .
I don't want to set labels , but have them generated automatically from the x,y coordinates. I think chartjs already implements that but my syntax is wrong.
var x = new Chart(document.getElementById("myChart1"), {
type: 'line',
data: {
datasets: [{
label: "Test",
data: [{
x: 0,
y: 5
}, {
x: 5,
y: 10
}, {
x: 8,
y: 5
}, {
x: 15,
y: 0
}],
}]
},
options: {
responsive: true,
}
});
Any idea how to fix the code above ?
I'm trying to create a simple line graph with x,y coordinates but i'm getting a blank page .
I don't want to set labels , but have them generated automatically from the x,y coordinates. I think chartjs already implements that but my syntax is wrong.
var x = new Chart(document.getElementById("myChart1"), {
type: 'line',
data: {
datasets: [{
label: "Test",
data: [{
x: 0,
y: 5
}, {
x: 5,
y: 10
}, {
x: 8,
y: 5
}, {
x: 15,
y: 0
}],
}]
},
options: {
responsive: true,
}
});
Any idea how to fix the code above ?
Share Improve this question edited Jan 19, 2018 at 7:30 beaver 17.6k2 gold badges43 silver badges68 bronze badges asked Jul 14, 2017 at 8:25 Sam.tuverSam.tuver 7092 gold badges9 silver badges20 bronze badges 02 Answers
Reset to default 31I believe, what you are looking for, is a scatter graph, not line.
var x = new Chart(document.getElementById("myChart1"), {
type: 'scatter',
data: {
datasets: [{
label: "Test",
data: [{
x: 0,
y: 5
}, {
x: 5,
y: 10
}, {
x: 8,
y: 5
}, {
x: 15,
y: 0
}],
}]
},
options: {
responsive: true
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.6.0/Chart.min.js"></script>
<canvas id="myChart1"></canvas>
Refer here, to learn more about scatter chart.
my fresh answer: the x values should be strings. transform your data this way:
data = data.map(
v=>({y:v.y,x:''+v.x}));
i found it by chance. the labels array isn't needed.
to use the numeric values of x, and arrange the labels and points according to their numeric values, you can use the linear scale type for the x-axis as follows:
options: {
scales: {
x: {
type: 'linear',
},
},
}
in this case, the mapping of the function above is not needed.
本文标签: javascriptChartjsPlot line graph with XY coordinatesStack Overflow
版权声明:本文标题:javascript - Chart.js - Plot line graph with X , Y coordinates - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1737618359a1999062.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论