Example usage for org.jfree.chart.plot PiePlot3D getStartAngle

List of usage examples for org.jfree.chart.plot PiePlot3D getStartAngle

Introduction

In this page you can find the example usage for org.jfree.chart.plot PiePlot3D getStartAngle.

Prototype

public double getStartAngle() 

Source Link

Document

Returns the start angle for the first pie section.

Usage

From source file:BrowserAverage.java

public Rotator(PiePlot3D plot, int speed) {
    super(100, null);
    this.plot = plot;
    angle = (int) plot.getStartAngle();
    this.speed = speed;
    addActionListener(this);
}