Quantcast
Viewing all articles
Browse latest Browse all 22

Answer by Alexander Abramov for How can I hide dataset labels in Chart.js v2?

for me also needed to remove x-axis and y-axis labels. for that use:

options: {  scales: {    x: {      display: false, // Hide x-axis label    },    y: {      display: false, // Hide y-axis label    }  }}

Viewing all articles
Browse latest Browse all 22

Trending Articles