Chartjs-Chartjs align origin of the axis to the corner of graph

0👍

Nvm, it is me being stupid, just need to hide the entire axis then the result is correct. Like,

scales:{
       xAxes:[{display:false, }],
       yAxes:[{display:false,}]},    
       legend:{display:false}
}

Leave a comment