Hi!
I've got a line chart with a DateTime axis (primaryX) and several series.
I would like to format my axis labels to show only the date, so I set the label format » labelFormat: 'yyyy-MM-dd'.
I have also defined a trackball, in which I would like to show the full DateTime: 'yyyy-MM-dd hh:mm'
What I have so far for the trackball is:
tooltip: { enable: true, shared: true, format: '${series.name}: ${point.y}' },
crosshair: { enable: true, lineType: 'Vertical' }
I'm only getting the date part, without the time info.
How can I achieve this ?
Thanks