I wanna know if it's possible to change the color of the chart axis using ChartJS.
Thanks
you can change the color by scales configuration under chart options:
type: '...', data: {...}, options: { scales: { xAxes: [{gridLines: { color: "#131c2b" }}], yAxes: [{gridLines: { color: "#131c2b" }}] } }
1.4m articles
1.4m replys
5 comments
57.0k users