--
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/-/MhNys9U3NMMJ.
To post to this group, send email to google-visua...@googlegroups.com.
To unsubscribe from this group, send email to google-visualizati...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-visualization-api?hl=en.
--
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/-/Cj07tOYyNZYJ.
Hi...I tried creating line chart on candle stick chart.. in combo chart.. i have coded as given below.. but the output coming is only candlestick chart ...it is ignoring line chart series.. please help me to draw line chart on candle stick.. chart...function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Mon', 20, 28, 38, 45],
['Tue', 31, 38, 55, 66],
['Wed', 50, 55, 77, 80],
['Thu', 77, 77, 66, 50],
['Fri', 68, 66, 22, 15],
['Sat', 68, 66, 22, 15],
['Sun', 69, 69, 29, 18]
], true);
// Create and draw the visualization.
var ac = new google.visualization.ComboChart(document.getElementById('visualization'));
ac.draw(data, {
title : 'Monthly Coffee Production by Country',
width: 600,
height: 400,
seriesType: "candlesticks",
series: {2: {type: "line"}}
});
}
google.setOnLoadCallback(drawVisualization);Thanks and Regards,Ravi Kumar Malla
To post to this group, send email to google-visualization-api@googlegroups.com.
To unsubscribe from this group, send email to google-visualization-api+unsub...@googlegroups.com.
gonna need a slight alter version of Line charts:1.just print the point when there exits one ,don't print anything if the corresponding data is null or "".2. don't plot lines which connects these printed points
在 2012年3月29日星期四UTC+8下午9时16分14秒,Yuval Ronen写道:
To post to this group, send email to google-visualization-api@googlegroups.com.
To unsubscribe from this group, send email to google-visualization-api+unsub...@googlegroups.com.