JavaFX NumberAxis 显示双打

JavaFX NumberAxis displays doubles

我创建了一个小应用程序,它使用实时动画折线图每 2 秒显示某个文件夹中的文件数。一切正常,但 chart/yAxis 在每次更新后都会显示双精度值。该文件夹可以包含 0 到 30.000 个文件 ...

@FXML
public LineChart<String, Integer> myChart;

@FXML
public CategoryAxis xAxis;

@FXML
public NumberAxis yAxis;

...

yAxis.setMinorTickVisible(false);
yAxis.setTickMarkVisible(false);
yAxis.setTickUnit(1);

如何确保 y 轴仅 contains/uses 整数值...? 永远不要使用 x,5 values/rows。

如果启用了自动量程(默认情况下),则会自动设置刻度单位。见 documentation.

所以一种方法是关闭自动量程,然后手动设置量程。这可能需要您在数据更改时更新范围,但下面演示了这个想法:

public class ChartTest extends Application {
    @Override
    public void start(Stage stage) throws IOException {
        CategoryAxis xAxis = new CategoryAxis();
        NumberAxis yAxis = new NumberAxis();
        yAxis.setTickUnit(1);
        yAxis.setMinorTickVisible(false);
        yAxis.setTickMarkVisible(false);
        yAxis.setAutoRanging(false);

        Random rng = new Random();
        XYChart.Series<String, Integer> data = new XYChart.Series<>();
        int max = Integer.MIN_VALUE;
        for (String x : "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("")) {
            int y = rng.nextInt(10);
            if (y > max) max = y ;
            data.getData().add(new XYChart.Data<>(x, y));
        }

        yAxis.setUpperBound(max + 1);

        data.setName("Data");
        LineChart<String, Integer> chart = new LineChart(xAxis, yAxis);
        chart.getData().add(data);
        Scene scene = new Scene(new BorderPane(chart), 600, 800);
        stage.setTitle("Chart Test");
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch();
    }
}

如果你想保留自动量程,你可以使用一个刻度标签格式化程序,returns一个空字符串用于 non-integer 个值:

public class ChartTest extends Application {
    @Override
    public void start(Stage stage) throws IOException {
        CategoryAxis xAxis = new CategoryAxis();
        NumberAxis yAxis = new NumberAxis();

        yAxis.setMinorTickVisible(false);
        yAxis.setTickMarkVisible(false);
        yAxis.setTickLabelFormatter(new StringConverter<Number>() {
            @Override
            public String toString(Number number) {
                double d = number.doubleValue();
                if (d == Math.rint(d)) {
                    return Integer.toString(number.intValue());
                }
                return "" ;
            }

            // Not used
            @Override
            public Number fromString(String s) {
                return null;
            }
        });

        Random rng = new Random();
        XYChart.Series<String, Integer> data = new XYChart.Series<>();
        for (String x : "ABCDEFGHIJKLMNOPQRSTUVWXYZ".split("")) {
            int y = rng.nextInt(10);
            data.getData().add(new XYChart.Data<>(x, y));
        }

        data.setName("Data");
        LineChart<String, Integer> chart = new LineChart(xAxis, yAxis);
        chart.getData().add(data);
        Scene scene = new Scene(new BorderPane(chart), 600, 800);
        stage.setTitle("Chart Test");
        stage.setScene(scene);
        stage.show();
    }

    public static void main(String[] args) {
        launch();
    }
}