gpt4 book ai didi

java - 如何将多个折线图放入一个场景/舞台?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:09:20 28 4
gpt4 key购买 nike

我正在寻找一种将 3 个 LineCharts 放入单个窗口的方法。我的意思是我想让它们并排放置,或者一个在另一个下面。

我一直在寻找实现它的方法,但找不到任何东西。我试图搜索如何将多个场景放入一个阶段......如何将多个 LineCharts 放入一个场景中......ETC...没有任何成功。

这是我的代码:

 private void drawGraph(Stage stage, Double[] axisValues) {
//defining the axes
final NumberAxis xAxis = new NumberAxis();
final NumberAxis yAxis = new NumberAxis();
xAxis.setLabel("Time");
//creating the chart
final LineChart<Number,Number> lineChart =
new LineChart<Number,Number>(xAxis,yAxis);

lineChart.setTitle("Axis' values");
//defining a series
XYChart.Series series = new XYChart.Series();
series.setName("X Axis");
//populating the series with data
for (int i = 1; i<33; i++){
series.getData().add(new XYChart.Data(i, axisValues[i]));
}

//Scene scene = new Scene(lineChart,800,600);
Scene scene = new Scene(lineChart,800,600);
lineChart.getData().add(series);

stage.setScene(scene);
stage.show();
}

最佳答案

问题

一个舞台(窗口)中只有一个场景,因此您不能向同一舞台添加多个场景。但是你可以改变舞台的场景。

http://docs.oracle.com/javase/8/javafx/get-started-tutorial/hello_world.htm#CIHBIHHA

解决方案

在 Scene Builder 中,您可以在预览中看到可能的解决方案。将三个 LineCharts 添加到一个 FlowPane 中,然后将 FlowPane 添加到场景中。

Hierarchy

您的代码中存在一些类型安全问题,因此我创建了一个完整的示例来向您展示如何做到这一点。

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.chart.LineChart;
import javafx.scene.chart.NumberAxis;
import javafx.scene.chart.XYChart;
import javafx.scene.layout.FlowPane;
import javafx.stage.Stage;

public class FlowChart extends Application {

@Override
public void start(Stage primaryStage) {

Double[] data = {0.1, 0.4, 0.5, 0.7, 0.9, 1.0};

LineChart<Number, Number> lc = createLineChart(data);
LineChart<Number, Number> lc1 = createLineChart(data);
LineChart<Number, Number> lc2 = createLineChart(data);

FlowPane root = new FlowPane();
root.getChildren().addAll(lc, lc1, lc2);

Scene scene = new Scene(root, 800, 600);

primaryStage.setTitle("Hello World!");
primaryStage.setScene(scene);
primaryStage.show();
}

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}

private LineChart<Number, Number> createLineChart(Double[] axisValues) {
//defining the axes
final NumberAxis xAxis = new NumberAxis();
final NumberAxis yAxis = new NumberAxis();
xAxis.setLabel("Time");
//creating the chart
final LineChart<Number, Number> lineChart = new LineChart<>(xAxis, yAxis);

lineChart.setTitle("Axis' values");
//defining a series
XYChart.Series<Number, Number> series = new LineChart.Series<>();
series.setName("X Axis");
//populating the series with data
for (int i = 0; i < axisValues.length; i++) {
XYChart.Data<Number, Number> data = new LineChart.Data<>(i, axisValues[i]);
series.getData().add(data);
}
lineChart.getData().add(series);
return lineChart;
}
}

结果

Result

关于java - 如何将多个折线图放入一个场景/舞台?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31081734/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com