0
我想繪製一個X和Y整數數組到一個Java框架中的面板。Containing drawing to a panel area
畫線的最佳方式是什麼(目前我正在使用Graphic的drawPolyline)?
我怎樣才能高效縮放的整數值,以便他們都知道最大(Y)值的面板區域適合?
更新,例如
public void paint(Graphics g)
{
int height = panel.getHeight();
int width = panel.getWidth();
int[] xPoints = { ... values ... };
int[] yPoints = { ... values ... };
int nPoints = dataLength;
// Scale xPoints and yPoints so they fit in the area of width and height
// and draw line
g.drawPolyline(xPoints, yPoints, nPoints);
g.dispose();
}
你是什麼意思「繪製一個X和Y整數的數組」 - 你想繪製這些整數指定的點,還是繪製連接它們的線,或者自己畫出數字? – 2009-04-21 23:31:30