I am using google column chart to create a column chart as shown below:
const chart = new google.visualization.ColumnChart(chartDiv); // Extract the data from which to populate the chart.
chart.draw(data, {
height: 300,
legend: "none",
// @ts-ignore TODO(jpoehnelt) check versions
titleY: "Elevation (Meters)",
titleX: "Distance (Miles)"
});
The one problem is the values in xaxis. How can i only show 5 values for eg. 1, 2, 3, 4, 5? The xaxes values that are marked in red is populated densely. How to divide into 5 sections? Thanks for the help!
see the config options for -->
hAxis
there are a number of options to control the labels on the axis.
to divide the axis into segments,
use the
gridlines.count
option.this allows you to specify how many gridlines will be displayed,
and thus the number of labels.
see following working snippet...