lable hides image in frame
Hello
I am trying to display a label over a chart but the lable hides the chart
Can anyone help me see what parametres I have to set to stop this from happening?
super("Chart");
JLabel label;
chart ch = new chart();
add(ch);
add(new Label("Hi There!"));
setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10));
setSize(400, 400);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
setVisible(true);
Thanks :-)

