I have a type area
chart, with minor grid lines and a datetime
xAxis. data
is feed through an array of y values, and I got to render xAxis labels depending on the data
length successfully.
My issues are:
- the chart has a unwanted padding on the X axis
- the markers don't align with their labels
Check it:
Here's a working fiddle: https://jsfiddle.net/fernandaparisi/e07q32ay/53/
I noticed that if I remove all the max
, min
, tickInterval
, pointStart
and pointInterval
properties the markers are aligned correctly, but the chart doesn't expand its full available width.
margin
and spacing
chart properties seem to affect the chart as a whole, and not the plotted area.
Any thoughts?