how to hide x axis value in bar chart of google chart react code example
Example: google chart hide axis label
var options = {
hAxis: { textPosition: 'none' },
};
chart.draw(data, options);
var options = {
hAxis: { textPosition: 'none' },
};
chart.draw(data, options);