I have a a candle chart and I am trying to place a label just below the X axis lables whenever the date changes. I tried using the DrawAxisLabel method and had some success as first.
The problem is if I use the GetAxisDrawLabel event it only seems to fire when the label is ready to draw and by then it's too late. I also tried the GetAxisLabel but it seems to fire often and repeats values as if it is looping or something.
I need to be able to catch the date change of the candle first.
An example of what I am trying to do is this:
Code: Select all
| | | |
| | | |
23:15 23:45 00:15 00:45
06/13
Is this possible and how can I approach it?
Thanks,
Kevin