I had code that sets the V axis scale from 0 to 4. However, I deleted it, and now I canβt remember how I started working again. See below the code for my chart and the code that I think I used before.
This is what I think before ...
vAxis: { viewWindowMode:'explicit', viewWindow: { max:100, min:99.8 } }
Below is my schedule
// Create a line chart, passing some options var LineChart = new google.visualization.ChartWrapper({ 'chartType': 'LineChart', 'containerId': 'chart_div', 'options': { //'width': 300, 'height': 300, 'legend': 'top', 'backgroundColor': '#eeeeee', 'colors': [ '#8ea23f'], 'pointSize': 5, 'title': 'Selected Site and Species abundance over time' }, 'view':{'columns':[0,2]}, });
source share