I have used ajax to fetch the data. My code is below:
let jsonData = $.ajax({
url: url,
dataType:"json",
async: false,
success: function(jsonData){
let data = new google.visualization.arrayToDataTable(jsonData);
let options = {
title: title,
width: 600,
height: 200,
bar: {groupWidth: "25%"},
legend: { position: "none" },
colors: ['skyBlue'],
};
let chart = new google.visualization.ColumnChart(document.getElementById(elId));
chart.draw(data, options);
}
}).responseText;
I want to add a stroke or border around the columns using options. How can I add that? Also how to show the gridlines?
unfortunately, there are no configuration options that will add stroke or border around the columns.
you have to use a style column role, see column styles...
basically, you add a style column to the data table, after the y-series column.
the value of the style column represents the style of each column displayed on the chart.
see following working snippet...
gridlines are only supported on a continuous axis (number, date, etc.).
they are not supported by a discrete axis (string).
in order to display gridlines for the x-axis, you would need to convert the x-axis to numbers or dates.
we can use object notation in the data table to provide a number value and a formatted string.
we will also need to do the same for the x-axis ticks option.
if you want to add gridlines between the columns,
you can add additional ticks...
see following working snippet...
if you wan