I am attempting to have my labels (0, 20, 40, 60, 80, 100) at the top of the chart, not the bottom. I saw that hAxis.textPosition only supports in, out, and none. any idea how to get these labels to the top, not bottom?
var options = {
title: 'You\'re school needs a minimum of 80% enrollment for you\'re free beer money',
chartArea: {width: '50%'},
hAxis: {
title: 'Percentage of students enrolled',
minValue: 100,
gridlines: {
count: 6
}
},
legend: { position: 'right', maxLines: 1 },
vAxis: {
title: 'college location'
},
isStacked: true,
height: 300
};
here is a fiddle... https://jsfiddle.net/skinnyb/33og516L/3/ thanks in advance!
'hAxis.textPosition' as 'in'BUT in does not but legends to the center as out. Can I make it centered? - canbax