Is it possible to combine a bubble-plot and a line-plot in the same chart using jqPlot ?
Based on the discussion in combined line and bar w/ jqplot , I have created a jsfiddle which contains a buble-plot and a bar-plot here : http://jsfiddle.net/85K6K/6/
I am unable to convert the bar plot into line plot. How to do this ?
I tried (changing, removing) the renderer but the plot goes hayway
this is how I setup the series :
var plot2 = $.jqplot('chart', [ p, arr], {
series: [
{
renderer: $.jqplot.BarRenderer,
rendererOptions: {
barMargin: 10
},
pointLabels: {
show: true,
}
//showMarker:false
},
{
renderer: $.jqplot.BubbleRenderer,
rendererOptions: {
bubbleAlpha: 0.6,
highlightAlpha: 0.8
},
shadow: true,
shadowAlpha: 0.05
}],
axesDefaults: {
tickRenderer: $.jqplot.CanvasAxisTickRenderer,
},
axes: {
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer
},
yaxis: {
autoscale: true
}
}
});
What am I missing
Thanks in advance ...