Java CategoryAxis .getDisplayPosition (java .lang .String value)

Syntax

CategoryAxis.getDisplayPosition(java.lang.String value) has the following syntax.

public double getDisplayPosition(java.lang.String value)

Example

In the following code shows how to use CategoryAxis.getDisplayPosition(java.lang.String value) method.


import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.chart.CategoryAxis;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
 //from ww w.j  a  va  2 s . c om
public class Main extends Application {

    @Override
    public void start(final Stage stage) {
        stage.setWidth(500);
        stage.setHeight(500);
        Scene scene = new Scene(new Group());

        VBox root = new VBox();     
        CategoryAxis lineXAxis = new CategoryAxis(getData());
        
        System.out.println(lineXAxis.getDisplayPosition("Sales"));
        
        root.getChildren().addAll(lineXAxis);
        scene.setRoot(root);

        stage.setScene(scene);
        stage.show();
    }
    private ObservableList<String> getData() {
      ObservableList<String> answer = FXCollections.observableArrayList();
      answer.addAll("Sales","Products");
      return answer;
    }
    public static void main(String[] args) {
        launch(args);
    }
}




















Home »
  Java Tutorial »
    javafx.scene.chart »




AreaChart
BarChart
BubbleChart
CategoryAxis
PieChart