Skip to content
Advertisement

How can we show the tooltip of a curved line (drawn with piccolo2d) only along the curve and not in the contained area?

In the sample code below (Modified TooltipExample.java from https://github.com/piccolo2d/piccolo2d.java/tree/master/examples/src/main/java/org/piccolo2d/examples), I created a curved line inside a rectangle. It appears that the area/bounds contained by this curve is not along the curve but the highlighted part in GREY. I am trying to find if there is a way we can show the tooltip of curve only along the curve. I tried resetting the underlying PBounds, but no luck. Does anyone know how to achieve this?

JavaScript

enter image description here

The bigger picture: Let’s say we have many such overlapping curves passing over one another. If there is another smaller shape placed in between the huge overlapping area of these curves, I am not able to get any events for that shape. Basically I am not able to click that shape. I would appreciate any suggestions to solve this problem. Thanks in advance.

Edit 1: Adding a new picture for problem elaboration:

enter image description here

Advertisement

Answer

If the paint is null and you only have an outline of the curves, then the tooltips should work as you describe. However, If the objects are opaque then only the top object is picked. You could implement the tooltip mechanism the way it suits your scenario. For example, if you are over several objects that obscure each other you can display a combined tooltip of these objects.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement