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

OA系统

开发平台:

Java

  1. package cn.com.fcsoft.chart.examples;
  2. import cn.com.fcsoft.chart.*;
  3. import java.awt.*;
  4. import java.awt.event.*;
  5. /**
  6.  * This example shows how to use the target value lines.
  7.  * @author meiqi.
  8.  */
  9. public class LineChartWithHole {
  10. public static void main(String[] argv) {
  11. LineChart chart = new LineChart();
  12. double[] values = new double[] {34,68,Double.NaN,56,75,Double.NaN,24,63,54};
  13. chart.setSampleCount(values.length);
  14. chart.setSampleValues(0, values);
  15. // display the chart
  16. Frame f = new Frame();
  17. f.add("Center", chart);
  18. f.setSize(400,300);
  19. f.show();
  20. LineChart chart2 = new LineChart();
  21. values = new double[] {34,68,Double.NaN,56,75,Double.NaN,24,63,54};
  22. chart2.setSampleCount(values.length);
  23. chart2.setSampleValues(0, values);
  24. chart2.getSample(0, 2).clearValue();
  25. chart2.getSample(0, 5).clearValue();
  26. // display the chart
  27. Frame f2 = new Frame();
  28. f2.add("Center", chart2);
  29. f2.setSize(400,300);
  30. f2.setLocation(400,0);
  31. f2.show();
  32. }
  33. }