Example usage for javafx.scene.chart PieChart setLabelLineLength

List of usage examples for javafx.scene.chart PieChart setLabelLineLength

Introduction

In this page you can find the example usage for javafx.scene.chart PieChart setLabelLineLength.

Prototype

public final void setLabelLineLength(double value) 

Source Link

Usage

From source file:Main.java

@Override
public void start(Stage primaryStage) {
    PieChart pieChart = new PieChart();
    pieChart.setData(getChartData());/*w w w  .  j  ava  2s. c  om*/

    pieChart.setTitle("Title");
    pieChart.setLegendSide(Side.LEFT);
    pieChart.setClockwise(false);
    pieChart.setLabelsVisible(false);

    StackPane root = new StackPane();
    root.getChildren().add(pieChart);
    primaryStage.setScene(new Scene(root, 300, 250));
    primaryStage.show();

    pieChart.setLabelLineLength(8);
}