Download Solution: Click to Download Solution
Solution File Name: DisplayPercentages.doc
Unzip Password: prestobear.com
1.Ex1413.java
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Arc;
import javafx.scene.shape.ArcType;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Shape;
import javafx.scene.text.Text;
import javafx.stage.Stage;
import java.util.ArrayList;
/**
*Java program to use a pie chart to display the percentages.
*Use the Arc class to display the pies.
*/
public class Ex1413 extends Application {
}