Hello, I have an entity with a java.util.Date property. I was having trouble building a line trend chart where this date attribute was the TIME category. There was no line. So I created a Transient property for the date that transformed the value to java.time.LocalDate, used that in the chart instead and it worked. Can I ask for some advice?
-
Is this the intended functionality or a bug?
-
Is using LocalDate type for date attributes the preferred approach?