On Sun, Feb 14, 2016 at 6:16 PM, Max Mustermann
<
musterma...@gmail.com> wrote:
> Oh, I can fix that tomorrow then. The other was just a copy paste error
> since I deleted some other code.
>
> But maybe it also helps you if I give you the link on my testserver where I
> tested that out and some other graphs. The first one is supposed to be the
> mixed one, you can see the code in Firebug:
>
http://www.museum-of-dwellings.com/tracking/?pw=jb-ba16
> The error I mentioned dissappeared for some reason but its still not
> working.
I do this in many charts. For the series that are bar charts I do this:
series_options.push({
renderer: $.jqplot.BarRenderer,
rendererOptions: {
fillToZero: true,
barDirection: 'vertical',
shadowAlpha: 0,
barPadding: 0,
barMargin: 2,
},
});
and in the series that are lines I do this:
series_options.push({
color: '#00CCA3',
showMarker: true,
formatString: "",
highlighter: {
showHighlight: true,
show: true,
sizeAdjust: 2,
tooltipAxes: 'y',
showTooltip: true,
},
});
To debug your issue I would build up the chart one data set at a time
and see at which point it breaks. If that is not informative, then I'd
trace the code into jqPlot and see where it goes wrong there.