Hi.
I am using a combo chart with candlestick and a line series.
The code is below:
*function drawVisualization() {
var dataTable = google.visualization.arrayToDataTable([
['10:00',11.1,11.19,11.25,11.38,11.53],
['11:00',11.18,11.25,11.25,11.34,11.53],
['12:00',11.17,11.25,11.22,11.26,11.53],
['13:00',11.13,11.22,11.18,11.25,11.53],
['14:00',11.16,11.18,11.24,11.25,11.53],
['15:00',11.23,11.24,11.29,11.33,11.53],
['16:00',11.28,11.29,11.53,11.52,11.53]
], true);
var chart = new google.visualization.CandlestickChart(document.
getElementById('visualization'));
chart.draw(dataTable, {legend:'none',width:500,height:250,seriesType:
'candlesticks',series:{1:{type:'line'}}});*
}
This is working very well. But I want to add a second line series in the
same chart but it is not working.
Can someone help me?
Thanks!
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-visualization-api/-/ZBi5LfzB19AJ.
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-visualization-api?hl=en.