Hi
How do i add labels for a DateTimeAxis for the last day of the month?
If i set Interval to 1 and IntervalType to Months, i get labels for the first day of the month.
I can achieve it by setting Interval to 1, IntervalType to Days and MaximumLabels to a very high number (e.g. 366 since i want to display one year). Then i can register to the LabelCreated event, and in there check if the label to be created belongs to the last day of the month, and if not setting the LabelContent to an empty string. It works in general this way, but the higher the MaximumLabels number is, the slower zooming becomes (even if i don't handle the event). At 100, zooming is so slow that it's unusable, and i don't get the labels for each month. At 366 it is so slow that there is no response until android asks if i want to close the app since it isn't responding.
So is there a way to do this while still enabling zooming?