I am using the following to successfully place the legend outside my JQPlot line chart:
legend: { show: true, location: 'sw', placement: 'outside' },
However, this places the legend too close to the chart, in line with my yaxis labeling. I need to move it further to the left. Is there a way to do this?
Thanks.
A bit late, sure, but I got it!
You should use
placement: 'outsideGrid'
instead of placement: 'outside'
as 'outsideGrid' will shrink the graph area for the legend not to be mixed with it.
Hope this help!
Nico