画柱状图的Applet

import java.awt.Color;
import java.awt.EventQueue;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.font.FontRenderContext;
import java.awt.font.LineMetrics;
import java.awt.geom.Rectangle2D;

import javax.swing.JApplet;
import javax.swing.JComponent;

public class ChartApplet extends JApplet {
	public void init() {
		EventQueue.invokeLater(new Runnable() {
			@Override
			public void run() {
				String v = getParameter("values");
				if(v == null) {
					return;
				}
				int n = Integer.parseInt(v);
									
				double[] values = new double[n];
				String[] names = new String[n];
				for(int i=0; i<n; i++) {
					values[i] = Double.parseDouble(getParameter("value." + (i+1)));
					names[i] = getParameter("name." + (i+1));
				}
				
				add(new ChartComponent(values, names, getParameter("title")));
			}
		});
	}
}

class ChartComponent extends JComponent {
	public ChartComponent(double[] v, String[] n, String t) {
		values = v;
		names = n;
		title = t;
	}
	
	public void paintComponent(Graphics g) {
		Graphics2D g2 = (Graphics2D) g;
	
		if(values == null) {
			return;
		}
		
		double minValue = 0;
		double maxValue = 0;
		for(double v : values) {
			if(minValue > v) {
				minValue = v;
			}
			
			if(maxValue < v) {
				maxValue = v;
			}
		}
		
		if(maxValue == minValue) {
			return;
		}
		
		int panelWidth = getWidth();
		int panelHeight = getHeight();
		
		Font titleFont = new Font("SansSerif", Font.BOLD, 20);
		Font labelFont = new Font("SansSerif", Font.PLAIN, 10);
		
		FontRenderContext context = g2.getFontRenderContext();
		Rectangle2D titleBounds = titleFont.getStringBounds(title, context);
		double titleWidth = titleBounds.getWidth();
		double top = titleBounds.getHeight();
		
		double y = -titleBounds.getY();
		double x = (panelWidth - titleWidth) / 2;
		g2.setFont(titleFont);
		g2.drawString(title, (float)x, (float)y);
		
		LineMetrics labelMetrics = labelFont.getLineMetrics("", context);
		double bottom = labelMetrics.getHeight();
		
		y = panelHeight - labelMetrics.getDescent();
		g2.setFont(labelFont);
		
		double scale = (panelHeight - top - bottom) / (maxValue - minValue);
		int barWidth = panelWidth / values.length;
		
		for(int i=0; i<values.length; i++) {
			double x1 = i * barWidth + 1;
			double y1 = top;
			double height = values[i] * scale;
			if(values[i] >= 0) {
				y1 += (maxValue - values[i]) * scale;
			} else {
				y1 += maxValue * scale;
				height = -height;
			}
			
			Rectangle2D rect = new Rectangle2D.Double(x1, y1, barWidth - 2, height);
			g2.setPaint(Color.RED);
			g2.fill(rect);
			g2.setPaint(Color.BLACK);
			g2.draw(rect);
			
			Rectangle2D labelBounds = labelFont.getStringBounds(names[i], context);
			double labelWidth = labelBounds.getWidth();
			x = x1 + (barWidth - labelWidth) / 2;
			g2.drawString(names[i], (float)x, (float)y);
		}
	}
	
	private double[] values;
	private String[] names;
	private String title;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值