I have built a graph of bar chart with some data. the current result I have is: 
and what I want is to delete the names below the xAxes in the bar chart. I viewed the react-chartjs-2 documentation and tried to change the options, also viewed Chart.Js documentation.
this is my options right now:
const options = { scales: { yAxes: [ { ticks: { beginAtZero: true, }, }, ], xAxes: [ { scaleLabel: { display: false, }, gridLines: { display: false, }, }, ], }, }; 
