如何使用JavaFX创建气泡图?


气泡图接受一系列数据点 (x, y) 作为输入值,并为给定系列中的数据点创建气泡。在 JavaFX 中,您可以通过实例化 **javafx.scene.chart.BubbleChart** 类来创建气泡图。

通常,在所有 X-Y 图表中,数据点绘制两个值 (x, y)。在气泡图中,您可以选择第三个值,该值由气泡的半径表示。

实例化此类时,您必须传递代表 x 轴和 y 轴的 Axis 类 的两个对象(作为构造函数的参数)。由于 Axis 类是抽象类,您需要传递其具体子类的对象,例如 NumberAxis(用于数值)或 CategoryAxis(用于字符串值)。

创建轴后,您可以使用 **setLabel()** 方法为其设置标签。

设置数据

**XYChart.Series** 代表数据项的系列。您可以通过实例化此类来创建气泡点系列。此类包含一个可观察列表,其中包含系列中的所有点。

**XYChart.Data** 代表 x-y 平面中的特定数据点。要创建点,您需要通过传递该点的 x 值和 y 值来实例化此类。

因此,要为气泡创建数据:

  • 通过实例化 **XYChart.Data** 类创建所需数量的点。

  • 通过实例化 **XYChart.Series** 类创建系列。

  • 使用 **getData()** 方法获取 XYChart.Series 类的可观察列表。

  • 使用 **add()** 或 **addAll()** 方法将创建的数据点添加到列表中。

  • 将创建的数据系列添加到区域图中,方法如下:

bubbleChart.getData().add(series);

示例

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.chart.BubbleChart;
import javafx.stage.Stage;
import javafx.scene.chart.NumberAxis;
import javafx.scene.chart.XYChart;
import javafx.scene.layout.StackPane;
public class BubbleChartExample extends Application {
   public void start(Stage stage) {
      //Creating X and Y axes
      NumberAxis xAxis = new NumberAxis(0, 100, 10);
      NumberAxis yAxis = new NumberAxis(20, 100, 10);
      //Creating labels to the axes
      xAxis.setLabel("Age");
      yAxis.setLabel("Weight");
      //Creating the Bubble chart
      BubbleChart bubbleChart = new BubbleChart(xAxis, yAxis);
      //Preparing data for bubble chart
      XYChart.Series series = new XYChart.Series();
      series.getData().add(new XYChart.Data(10, 30, 4));
      series.getData().add(new XYChart.Data(25, 40, 5));
      series.getData().add(new XYChart.Data(40, 50, 6));
      series.getData().add(new XYChart.Data(55, 60, 8));
      series.getData().add(new XYChart.Data(70, 70, 9));
      series.getData().add(new XYChart.Data(85, 80, 12));
      //Setting the data to bar chart
      bubbleChart.getData().add(series);
      //Setting name to the bubble chart
      series.setName("work");
      //Creating a stack pane to hold the chart
      StackPane pane = new StackPane(bubbleChart);
      //Setting the Scene
      Scene scene = new Scene(pane, 595, 350);
      stage.setTitle("Bubble Chart");
      stage.setScene(scene);
      stage.show();
   }
   public static void main(String args[]){
      launch(args);
   }
}

输出

更新于:2020年5月19日

浏览量:182

启动您的 职业生涯

完成课程获得认证

开始学习
广告