Hi,
I noticed that LocalDate fields are not correctly displayed when used as the category field of a serial chart (notice the label [object Object]):
So i created a transient readonly field (converting LocalDate to Date), and now it is working as expected:
return Date.from(data.atStartOfDay(ZoneId.systemDefault()).toInstant());
Is this a bug or am I doing something wrong?
Thanks.
Regards,
Peterson.