Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.35 KB | None | 0 0
  1. public PieChartSyahrul() {
  2. this.setSize(600, 400);
  3. this.setTitle("Diagram PIE SYAHRUL");
  4. this.setLocationRelativeTo(null);
  5. this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  6. PieDataset dataset = buildData();
  7. JFreeChart chart = buildChart(dataset, "Game yang Sering Dimainkan");
  8. ChartPanel pieChart = new ChartPanel(chart);
  9. this.setContentPane(pieChart);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement