如何在 ChartJS 标签上方制作小网格线?
How can I make small grid lines above ChartJS labels?
我正在使用 Chart.js 绘制一个简单的折线图。
如何在 xAxis 标签上制作小网格线?
折线图的文档在这里:https://www.chartjs.org/docs/2.7.3/getting-started/?h=line,但我找不到任何相关信息。
我删除了 X 轴和 Y 轴网格线。
这是想要的小网格线示例:
提前致谢。
您可以将 drawOnChartArea
设置为 false,而不是删除网格线:
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderColor: 'pink'
},
{
label: '# of Points',
data: [7, 11, 5, 8, 3, 7],
borderColor: 'orange'
}
]
},
options: {
scales: {
x: {
grid: {
drawOnChartArea: false
}
},
y: {
grid: {
drawOnChartArea: false
}
}
}
},
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.6.2/chart.js"></script>
</body>
我正在使用 Chart.js 绘制一个简单的折线图。 如何在 xAxis 标签上制作小网格线?
折线图的文档在这里:https://www.chartjs.org/docs/2.7.3/getting-started/?h=line,但我找不到任何相关信息。
我删除了 X 轴和 Y 轴网格线。
这是想要的小网格线示例:
提前致谢。
您可以将 drawOnChartArea
设置为 false,而不是删除网格线:
var options = {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [12, 19, 3, 5, 2, 3],
borderColor: 'pink'
},
{
label: '# of Points',
data: [7, 11, 5, 8, 3, 7],
borderColor: 'orange'
}
]
},
options: {
scales: {
x: {
grid: {
drawOnChartArea: false
}
},
y: {
grid: {
drawOnChartArea: false
}
}
}
},
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.6.2/chart.js"></script>
</body>