1
私はステップチャートをbarchartにプロットする必要がある混合チャートで作業しています。私はそうのようなバーの始まりに合わせて行の先頭を作りたい混合チャート内のラインとバーの整列
:
私の折れ線グラフでデータポイントは、このようなデフォルトではバーの中央に整列されています私はChartjsのドキュメントを読んできましたが、私のバーの冒頭で行を始める方法が見つかりません。
Iセットアップ少し例を少しさらに私の問題を説明する:
var opc = $("#chart");
var myChart = new Chart(opc, {
type: 'bar',
data: {
labels: ['Item 1', 'Item 2', 'Item 3'],
datasets: [{
type: 'bar',
label: 'Bar Component',
data: [10, 20, 30],
}, {
type: 'line',
steppedLine: true,
label: 'Line Component',
data: [25, 5, 20],
fill: false
}]
},
options: {
scales: {
yAxes: [{
display: true,
ticks: {
suggestedMin: 0, // minimum will be 0, unless there is a lower value.
// OR //
beginAtZero: true // minimum value will be 0.
}
}]
}
}
});
は、ここで作業フィドルへのリンクです:https://jsfiddle.net/7yheenc6/1/