All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gsi.chart.axes.spi.AxisLabel Maven / Gradle / Ivy

package de.gsi.chart.axes.spi;

import javafx.scene.text.Text;

public class AxisLabel extends Text {

    public AxisLabel() {
        super();
        getStyleClass().add("axis-label");
        // make invisible: we only need it for style-sheet information
        setVisible(false);
        // this.setTranslateX(-10000);
        // this.setFill(Color.TRANSPARENT);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy