I'm creating some graphics using JQPlot, however I came across a difficult situation.
Test chart:
As you can see the caption is in vertical sequence and I would like to put it in horizontal sequence.
However, while I search (obviously, especially here on the stack) I found several ways to do it, but none worked.
var optLegend = {
renderer: $.jqplot.EnhancedLegendRenderer,
show:true,
placement: 'outsideGrid',
rendererOptions: {
numberRows: 1,
numberColumns: 3
},
This is the current caption definition code, but I did not get the desired result.
Can anyone help me?