ChartsInApplet.java
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. ////////////////////////////////////////////////////////////////
  2. // ChartsInApplet.java
  3. ////////////////////////////////////////////////////////////////
  4. package cn.com.fcsoft.chart.examples;
  5. import cn.com.fcsoft.chart.*;
  6. import java.awt.*;
  7. import java.applet.*;
  8. /**
  9.  * This demonstrates how to add charts in a java applet.
  10.  * @author meiqi.
  11.  */
  12. public class ChartsInApplet extends Applet {
  13. /**
  14.  * Creates the charts.
  15.  */
  16. public void init() {
  17. setLayout(new GridLayout(0,2));
  18. PieChart pieChart = new PieChart();
  19. pieChart.setSampleCount(5);
  20. pieChart.setSampleValues(0, new double[] {1,2,3,4,5});
  21. add(pieChart);
  22. LineChart lineChart = new LineChart();
  23. lineChart.setSampleCount(10);
  24. lineChart.setSampleValues(0, new double[] {79,87,65,43,56,43,23,67,67,89});
  25. add(lineChart);
  26. }
  27. }