var chart = new google.visualization.LineChart(document.getElementById('prediction_chart'));
chart.draw(data, options);
my config is
var options = {
title: 'xyz',
curveType: 'function',
legend: { position: 'bottom' },
pointSize: 5,
series: {
2: { lineDashStyle: [4, 2] },
3: { lineDashStyle: [4, 2] },
},
vAxis: {
scaleType: 'log'
}
};