If no title is set for yAxis, it behaves correctly, there is an horizontal line <img src="https://user-images.githubusercontent.com/39555268/153296467-581823ed-ee88-41f6-b722-6a9bc57a5be6.png" width="600px"> But if we set a title, the line becomes diagonal: <img src="https://user-images.githubusercontent.com/39555268/153296579-30562716-8209-4488-ab3f-9a74d9cc9e91.png" width="600px"> ## To reproduce, Go on https://www.chartjs.org/chartjs-plugin-annotation/master/guide/types/line.html#configuration and add in the options: ```javascript scales: { yAxis: { title: { display: true, text: "My First Dataset" } } }, ```