Continuing the discussion from Canvas - Graph legend position:
I have a line chart with a legend and using the below CSS, I am able to show the legend on the right side that doesn't obstruct the graph.
.canvasRenderEl .flot-base {
width: 70% !important;
}
.canvasRenderEl .legend table {
left: 75% !important;
}
I am however unable to move the x-Axis labels to align with the table. See below image:
I've tried appending the following to the CSS but doesn't appear to be moving the x-Axis labels. I'm looking for the Apr
label to be under the datapoints.
.canvasRenderEl .flot-x-axis {
width: 75% !important;
}
Any ideas?