Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AliwerErgashev/ab1734aca77acdff71497909dbc3dd74 to your computer and use it in GitHub Desktop.
Save AliwerErgashev/ab1734aca77acdff71497909dbc3dd74 to your computer and use it in GitHub Desktop.
chartjs remove everything
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
callback: function(value, index, values) {
return '';
},
},
gridLines: {
display: false,
drawBorder: false,
},
}],
xAxes: [{
ticks: {
beginAtZero: true,
callback: function(value, index, values) {
return '';
},
},
gridLines: {
display: false,
drawBorder: false,
},
}],
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment