I have a chart that I need to display datatips on. To the right of the chart I have checkboxes and various other controls. The general idea:
<HBox>
<Chart>
<VBox> <CheckBoxes> </VBox>
</HBox>
When I open a data tip though it overlaps the controls on the right. How can I prevent the datatips from coming out of the chart? Or at least make them appear on top of the controls. I tried setting opaqueBackground. It is opaque on the chart and appears on top of the other datapoints but still appears underneath the controls on the right.
Thanks.