`
太阳神喻
  • 浏览: 105197 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论

JFreeChart折线图

阅读更多
 

 		String sql = "select count(id) num, DATE_FORMAT(calltime, '%Y年%m月') ym,modulename mn from  tongji t group by DATE_FORMAT(calltime, '%Y年%m月'),mn";
		List list = getList(sql);
		// 绘图数据集
		DefaultCategoryDataset dataSet = new DefaultCategoryDataset();
		for (Object obj : list) {
			Map<String, Object> map = (Map) obj;
			dataSet.setValue((Long) map.get("num"), (String) map.get("mn"), map.get("ym").toString());
		}
		//如果把createLineChart改为createLineChart3D就变为了3D效果的折线图		
		JFreeChart  chart = ChartFactory.createLineChart("图表标题", "X轴标题", "Y轴标题", dataSet,
				PlotOrientation.VERTICAL, // 绘制方向
				true, // 显示图例
				true, // 采用标准生成器
				false // 是否生成超链接
				);
		chart.getTitle().setFont(titleFont); // 设置标题字体
		chart.getLegend().setItemFont(font);// 设置图例类别字体
		chart.setBackgroundPaint(bgColor);// 设置背景色 
		//获取绘图区对象
		CategoryPlot plot = chart.getCategoryPlot();
		plot.setBackgroundPaint(Color.LIGHT_GRAY); // 设置绘图区背景色
		plot.setRangeGridlinePaint(Color.WHITE); // 设置水平方向背景线颜色
		plot.setRangeGridlinesVisible(true);// 设置是否显示水平方向背景线,默认值为true
		plot.setDomainGridlinePaint(Color.WHITE); // 设置垂直方向背景线颜色
		plot.setDomainGridlinesVisible(true); // 设置是否显示垂直方向背景线,默认值为false
		
		
		CategoryAxis domainAxis = plot.getDomainAxis();   
		domainAxis.setLabelFont(font); // 设置横轴字体
		domainAxis.setTickLabelFont(font);// 设置坐标轴标尺值字体
		domainAxis.setLowerMargin(0.01);// 左边距 边框距离
		domainAxis.setUpperMargin(0.06);// 右边距 边框距离,防止最后边的一个数据靠近了坐标轴。
		domainAxis.setMaximumCategoryLabelLines(2);
		
		ValueAxis rangeAxis = plot.getRangeAxis();
		rangeAxis.setLabelFont(font); 
		rangeAxis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());//Y轴显示整数
		rangeAxis.setAutoRangeMinimumSize(1);   //最小跨度
		rangeAxis.setUpperMargin(0.18);//上边距,防止最大的一个数据靠近了坐标轴。   
		rangeAxis.setLowerBound(0);   //最小值显示0
		rangeAxis.setAutoRange(false);   //不自动分配Y轴数据
		rangeAxis.setTickMarkStroke(new BasicStroke(1.6f));     // 设置坐标标记大小
		rangeAxis.setTickMarkPaint(Color.BLACK);     // 设置坐标标记颜色

		
		
	 // 获取折线对象
		LineAndShapeRenderer renderer = (LineAndShapeRenderer) plot.getRenderer();
		BasicStroke realLine = new BasicStroke(1.8f); // 设置实线
		// 设置虚线
		float dashes[] = { 5.0f }; 
		BasicStroke brokenLine = new BasicStroke(2.2f, // 线条粗细
				BasicStroke.CAP_ROUND, // 端点风格
				BasicStroke.JOIN_ROUND, // 折点风格
				8f, dashes, 0.6f); 
		for (int i = 0; i < dataSet.getRowCount(); i++) {
			if (i % 2 == 0)
				renderer.setSeriesStroke(i, realLine); // 利用实线绘制
			else
				renderer.setSeriesStroke(i, brokenLine); // 利用虚线绘制
		}
		
		plot.setNoDataMessage("无对应的数据,请重新查询。");
		plot.setNoDataMessageFont(titleFont);//字体的大小
	    plot.setNoDataMessagePaint(Color.RED);//字体颜色

 平面折线图效果

 

 

3D折线图效果:

  • 大小: 61.9 KB
  • 大小: 84.9 KB
2
0
分享到:
评论
4 楼 hllf123 2011-12-06  
如果折线图上拐点显示数据会出现逗号 也就是:48,580  怎么去掉这个逗号呢
3 楼 che.kxuan 2010-09-29  
我想问下折线图可以添加超链接么?应该怎么实现?
2 楼 form_rr 2010-04-04  
不错,最近也在搞这个!
不过要多条Y轴!
1 楼 yexin218 2010-04-03  
  

相关推荐

Global site tag (gtag.js) - Google Analytics