I am trying to specify a custom labelFunction for the DateTimeAxis for a LineChart. The "canDropLabels" property of this horizontalAxis is set to true. The problem I am facing is that the labelFunction seems to get called for *ALL* labels, even the ones getting dropped.
This is an issue for me because am relying on the "previousValue" argument of the labeFunction to perform some customLogic (i.e if this is the first occurence of a time in a day , show the month/day, otherwise show the hr/min). Because the function gets called even for the labels being dropped, my logic does not work as intended..... Is there any way to run a labelFunction for only those labels that are being rendered on the axis ? TIA -superabe

