I am trying to change the size of the tooltip in my bar chart using the options parameter.
However nothing I do affects the tooltip. It seems like the Bar chart has some limitations, although I can't confirm from the documentation or Examples provided, it seems the legend: "none"
property has no affect as well as the
vAxis: {title: "" }
. This is how I am formatting the options object.
export const options = {
chart: {
title: "Visits in the last 2 weeks",
hAxis: {
title: "Date",
},
vAxis: {
title: "Visit Count",
},
legend: "none",
tooltip: {innerHeight: "10px", outerHeight: "10px", showColorCode: false,},
},
}
Is there something Im doing wrong here in the formatting of my options? Or possibly more documentation somewhere that explains more on customizing?