zoukankan      html  css  js  c++  java
  • JFreeChat学习柱状图方法补充

          //获得Plot对象
          CategoryPlot plot = chart.getCategoryPlot();


          //设置网格背景颜色
          plot.setBackgroundPaint(Color.white);
         
          //设置网格竖线颜色
          plot.setDomainGridlinePaint(Color.pink);
         
          //设置网格横线颜色
          plot.setRangeGridlinePaint(Color.pink);
         
          //显示每个柱的数值,并修改该数值的字体属性
          BarRenderer3D renderer = new BarRenderer3D();
          renderer.setBaseItemLabelGenerator(new StandardCategoryItemLabelGenerator());
          renderer.setBaseItemLabelsVisible(true);
         
          //默认的数字显示在柱子中,通过如下两句可调整数字的显示
          //注意:此句很关键,若无此句,那数字的显示会被覆盖,给人数字没有显示出来的问题
          renderer.setBasePositiveItemLabelPosition(new ItemLabelPosition(ItemLabelAnchor.OUTSIDE12, TextAnchor.BASELINE_LEFT));
          renderer.setItemLabelAnchorOffset(10D);
         
          //设置每个地区所包含的平行柱的之间距离
          renderer.setItemMargin(0.3);
         
          //设置地区、销量的显示位置,相当于执行上面的内容
          plot.setRenderer(renderer);
         
          //将下方的“肉类”放到上方
          plot.setDomainAxisLocation(AxisLocation.TOP_OR_RIGHT);


          //将默认放在左边的“销量”放到右方
          plot.setRangeAxisLocation(AxisLocation.BOTTOM_OR_RIGHT);

    顺便上图啦:

  • 相关阅读:
    参数探测(Parameter Sniffing)与影响计划重用的SET选项
    The workbook can not be opened
    参数Sniffing问题
    Unable to connect SQL Server
    正则|和[]的区别
    form的target捕捉不到动态写入name的iframe
    windows下git bash乱码问题
    ie6,7下textarea等上方空白
    根据字数截取字符串,不能截断url
    浏览器hack
  • 原文地址:https://www.cnblogs.com/liuhuapiaoyuan/p/3113471.html
Copyright © 2011-2022 走看看