0
y軸に時間(1〜24)、x軸に日(1〜10)を持つグラフを作成したいと思います。 1点以下グラフを作成する
あなたが提示使っChartist
とチャートの任意の型を構築しないできhttp://gionkunz.github.io/chartist-js/
var chart = new Chartist.Line('.ct-chart', {
labels: [1,2,3,4,5,6,7,8,9,10],
series: [3, 4, 5, 6, 8, 10, 11, 11, 11, 12, 13, 16, 17, 17, 18, 18, 19, 19, 21, 21, 21, 23, 23]
}, {
fullWidth: true,
chartPadding: {
right: 10
},
low: 0
});
*シリーズの繰り返し番号を1点に散布してください。*どういう意味ですか? – utkarsh31