Hey, I am working with simple line charts, but my chart options doesnt work. It only gets a title, but nothing else. An example for the integration is http://www.myclimbs.de/produkt/15-513-0173-Marmot-Always-Summer-Daunenschlafsack It tried it like this
> 'vAxis.title': 'Preis in Euro', > > and like this > vAxis.title: 'Preis in Euro', > but nothing worked. Can you help me? <script type="text/javascript" src="https://www.google.com/jsapi <view-source:https://www.google.com/jsapi>"></script> <script type="text/javascript"> google.load("visualization", "1", {packages:["corechart"]}); google.setOnLoadCallback(drawChart); function drawChart() { var data = new google.visualization.DataTable(); data.addColumn('datetime', 'Zeit'); data.addColumn('number', 'Preis'); data.addRows([ [new Date(2012, 06, 05), 113.97], [new Date(2012, 06, 07), 101.97], [new Date(2012, 06, 11), 123.47]]); var options = { 'legend.position': 'none', 'vAxis.title': 'Preis in Euro', 'vAxis.minValue': 0 }; var chart = new google.visualization.LineChart(document.getElementById('chart_div')); chart.draw(data, options); } </script> > > -- You received this message because you are subscribed to the Google Groups "Google Chart API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-chart-api/-/I5K_sUD4zIwJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-chart-api?hl=en.
