I need to hide labels in line chart drawn using library chart.js. I googled but no luck. Could that be hidden?
Thanks
options: { scales: { yAxes: [{ gridLines: { display: true, color: 'rgba(219,219,219,0.3)', zeroLineColor: 'rgba(219,219,219,0.3)', drawBorder: false, // <--- lineWidth: 27, zeroLineWidth: 1 }, ticks: { beginAtZero: true, display: true } }] } }