ChartsInApplet.java
资源名称:OA.rar [点击查看]
上传用户:mingda
上传日期:2017-06-20
资源大小:27691k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- ////////////////////////////////////////////////////////////////
- // ChartsInApplet.java
- ////////////////////////////////////////////////////////////////
- package cn.com.fcsoft.chart.examples;
- import cn.com.fcsoft.chart.*;
- import java.awt.*;
- import java.applet.*;
- /**
- * This demonstrates how to add charts in a java applet.
- * @author meiqi.
- */
- public class ChartsInApplet extends Applet {
- /**
- * Creates the charts.
- */
- public void init() {
- setLayout(new GridLayout(0,2));
- PieChart pieChart = new PieChart();
- pieChart.setSampleCount(5);
- pieChart.setSampleValues(0, new double[] {1,2,3,4,5});
- add(pieChart);
- LineChart lineChart = new LineChart();
- lineChart.setSampleCount(10);
- lineChart.setSampleValues(0, new double[] {79,87,65,43,56,43,23,67,67,89});
- add(lineChart);
- }
- }