To use a multi-axis axis, you need to set the Axes values ββin your options to declare that there is more than one axis, and the Series property to indicate which series go to any axis. The code for this is to replace your parameters with
var options = { title: 'Total CPU Hours Per Year By Site', hAxis: {title: 'Year', titleTextStyle: {color: 'black'}} , series:[ {targetAxisIndex:1}, {targetAxisIndex:0}, {targetAxisIndex:0}, {targetAxisIndex:0}, {targetAxisIndex:0}, {targetAxisIndex:0} ], vAxes:[ {},
If you do this, you need to make sure that the graph is honest, changing from one axis to two axes seriously changes the impression the graph can give the audience, and can be used as a way of lying with statistics.
source share