如何在JavaFX中创建LEGEND(图表边框中的文本)

时间:2017-08-11 07:00:18

标签: java javafx javafx-2 javafx-8 javafx-3d

如何在JavaFX中的窗格边框中添加文本,如下所示:

enter image description here

1 个答案:

答案 0 :(得分:1)

这类似于c#中的节点。我不知道JavaFX是否有这种类型的节点。在SceneBuilder我在边框顶部的PaneLabel周围添加了边框。然后我将根AnchorPane的背景设置为白色,将Label的背景设置为白色。我没有尝试使用Group,但我猜这可能是一个好主意。

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.Pane?>


<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" style="-fx-background-color: White;" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <Pane fx:id="pane" layoutX="200.0" layoutY="100.0" prefHeight="200.0" prefWidth="200.0" style="-fx-border-color: BLACK;" />
      <Label layoutX="218.0" layoutY="92.0" style="-fx-background-color: WHITE;" text="Label" />
   </children>
</AnchorPane>

enter image description here