I want to hide labels on x-axis as i have a solution to set
$scope.labels = [\'\', \'\', \'\', \'\', \'\', \'\', \'\'];
but in that case labels
I think that's something you can do it with options setting in the latest versions of chartjs:
options: { scales: { xAxes: [ { ticks: { display: false } } ]; } }