I want to place a game board in JPanel and i’m using GridLayout 10×10
In addition i want to place additional labels on the same JPanel but not inside the grid.
When i’m adding this labels they are automatically added to the grid despite the fact that i fixed the size.
To summarize:
How can i arrange in the same JPanel with grid layout a fixed board with labels and additional labels in the left area of the plane.

Why not two panels, one with a
GridBaglayoutand another one with aBoxLayoutenclosed in a panel withGridLayout? :))