我正在使用ChartJS来构建时间/折线图。我很难匹配 X轴(每月天数)和 Y轴(每月参赛作品数)
我希望这个数据数组显示在我的图表上,使用 X轴(每月天数)和array['date']
作为其共同参考。
[0] => Array (
[count] => 2
[date] => 2017-11-07 )
[1] => Array (
[count] => 3
[date] => 2017-11-08 )
[2] => Array (
[count] => 6
[date] => 2017-11-09 )
[3] => Array (
[count] => 2
[date] => 2017-11-10 )
)
这是我的代码,省略了一些行
var data = {
labels : [<?php echo "'".$daysofthemonth."'"; ?>], //print days of month
datasets :
[
{
....
data : [{
x: array['date'] here, //this should match the x-axis
y: array['count'] here}],
...
},
]
如果数组中的某些日期不存在,则应将count
等同于 0
期望