1👍
Yes, you can set tickLength
to 0
in the grid
config:
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: {
y: {
grid: {
tickLength: 0,
drawBorder: false
}
},
x: {
grid: {
display: 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.8.0/chart.js"></script>
</body>
- [Chartjs]-Chart.js Clipping on Top of Line Graph
- [Chartjs]-Chart.js – Line charts with different colors for each border lines
0👍
So I’ve found the best way to do that
scales: {
x: {
grid: {
display: false,
drawTicks: false,
},
},
Just add drawTicks: false
and it will solve the problem.
- [Chartjs]-Chart.js – consolidating days to month totals along the x (time) axis?
- [Chartjs]-Updating chartJS with dynamic data
Source:stackexchange.com