Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
285
how can I avoid overlapping annotations
posted

Hi

I have a composite chart that is composed of line and column charts. in these charts, I draw stock prices and volume respectively. moreover, I have annotations plotted on the line charts as images to show trades that were made on a specific date.

But, when there many annotations that close to each other in terms of dates, they overlap which makes it very hard to see all of them.

is there a way in which I can make these annotations arrange automatically to not overlap?

Please help,

Thanks

here is an example of how they look:

Parents
No Data
Reply
  • 26458
    Verified Answer
    Offline posted

    There is no internal logic to adjust positioning of annotations. However, you can manually reposition them if you handle FillSceneGraph event. When you loop through the scenegraph look for ChartImage primitives. These are the images that represent your image annotations and you can adjust their positioning there.

Children