Hello,
I hope someone can give advice on how to best create pie charts that integrate in the UI system.
Creating an extremely basic pie chart is not the issue. While probably not as great for performance as creating a 3D geometry visualization, my idea so far is rather simple: just generate an Urho3D::Image for each pie share and stack them on top of each other in the UI as BorderImages (same position and resolution).
My problem arises from the fact that I want every share to have a separate tooltip.
Now as far as I can see it there is no option to have transparent parts of the image not trigger tooltips (i.e. like a view mask), so as it is it would always show the tooltip of the last element.
Are there any parameters that I overlooked, to change that behaviour without going into the engine source code? Or a better way to do this that is not too much effort? Perhaps someone already made custom UIElements that go into the direction of being more interactive, e.g. for displaying graphs or other charts?
Thanks!