I've met a problem in JavaFX.
This is what show in Jasperserver (A server), Adhoc-Model (One of a model of server).
Image: Jasperserver Adhoc Layout
As you can see, the pink area, is a type of HTML < li > Tag. It can display UI with a non-rectangle shape. Like Tetris?
However, I'am trying to do the same thing in JavaFX but failed.
I used a FlowPane as Pane A, and put some Label into Pane A. Then I used a little FlowPane as Pane B, also put some Label into Pane B. At last, I put Pane B into Pane A.
It's shown as following image.
As you can see, I failed to display the Pane B with a non-rectangle shape. And I think it is not very easy to do that.
Can anybody help me ? Your answer will be appreciated. Thank you very much.
If anyone need my code, please tell me. I will rewrite some simple code and put on here.
Thanks @James_D Very Much.
I've written a custom pane which extends FlowPane, and overridden layoutChildren() function.
It works !
Following is my code: