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

OA系统

开发平台:

Java

  1. package cn.com.fcsoft.chart.examples;
  2. import cn.com.fcsoft.chart.*;
  3. import java.awt.*;
  4. /**
  5.  * This example shows how to set the colors of each data series.
  6.  * @author meiqi.
  7.  */
  8. public class SeriesColors {
  9. public static void main(String[] argv) {
  10. // create the chart
  11. int sampleCount = 3;
  12. int seriesCount = 8;
  13. BarChart chart = new BarChart();
  14. chart.setSampleCount(sampleCount);
  15. chart.setSeriesCount(seriesCount);
  16. for (int serie = 0; serie < seriesCount; serie++) {
  17. for (int sample = 0; sample < sampleCount; sample++) {
  18. chart.setSampleValue(serie, sample, Math.round(Math.random()*100));
  19. }
  20. }
  21. // set the colors, when you have multiple series, the sample colors
  22. // set will be the colors used per serie, not per sample
  23. chart.setSampleColor(0, new Color(0xCC0000));
  24. chart.setSampleColor(1, new Color(0xFF3333));
  25. chart.setSampleColor(2, new Color(0xFF9900));
  26. chart.setSampleColor(3, new Color(0xFFFF00));
  27. chart.setSampleColor(4, new Color(0x99FF00));
  28. chart.setSampleColor(5, new Color(0x66CC00));
  29. chart.setSampleColor(6, new Color(0x669999));
  30. chart.setSampleColor(7, new Color(0x3300FF));
  31. chart.setMultiColorOn(true);
  32. // other bar attributes
  33. chart.setBarWidth(0.7);
  34. chart.set3DModeOn(true);
  35. chart.setValueLinesOn(true);
  36. // display the chart
  37. Frame f = new Frame();
  38. f.add("Center", chart);
  39. f.setSize(500,300);
  40. f.show();
  41. /* some colors to use
  42. #CC0000,#FF3333,#FF9900,#FFFF00,#99FF00,#66CC00,#669999,
  43. #3300FF,#000099,#663399,#CC33CC,#CC6699,#CC9933,#996600,
  44. #CCCCCC,#999999 */
  45. }
  46. }