I am utilizing jQuery Flot to generate a basic graph. I do not want the axes to display on either side, but this is causing the points to be slightly cut off. Any suggestions on how to resolve this issue?
$.plot('#'+id, [
{ data: data.values, color: 'rgba(57,132,176,1)', shadowSize: 0 },
],{
series: {
lines: { show: true },
points: { show: true }
},
xaxis: {
show: false
},
yaxis: {
show: false
},
grid: {
show: false
}
});
Check out the demo here: http://jsfiddle.net/s00pjn8b/