Package javafx.scene.chart

Examples of javafx.scene.chart.CategoryAxis


    public Snapshot(ReadOnlyLongProperty idProvider, String title, String yAxisTitle) {
        this(idProvider, title, yAxisTitle, null);
    }

    private void initialize() {
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis();
        yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis, yUnit, null));
        final LineChart chart = new LineChart(xAxis, yAxis);
        chart.setLegendVisible(false);
        chart.setTitle(title);
View Full Code Here

TOP

Related Classes of javafx.scene.chart.CategoryAxis

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.