ヒストグラムを作成しようとすると、表示されている長方形が分離されています。それらを隣同士に関連付ける方法 (スペースを削除)
これは私のコードの一部です:
public DrawRectangle(int x, int y, int width, int height) {
this.x = x;
this.y = 100 - height - 1;
this.width = width;
this.height = height;
box = new Rectangle();
this.setPreferredSize(new Dimension(width + 1, 100));
}
public void paintComponent(Graphics g) {
Graphics2D g2 = (Graphics2D) g;
boite.setLocation(x, y);
boite.setSize(width, height);
g2.draw(box);
}