S
scifluent
I've created an applet and then added a JFreechart ChartPanel to it.
jContentPane.add(myChartPanel);
myChartPanel is a member variable of my applet
and I see the plot just fine. Then I change the chart by setting
the myChartPanel to a new ChartPanel
myChartPanel = ChartPanelCreator.getChartPanel();
but the chart does not refresh in my applet.
I've tried jContentPane.repaint(); but no...
Suggestions?
jContentPane.add(myChartPanel);
myChartPanel is a member variable of my applet
and I see the plot just fine. Then I change the chart by setting
the myChartPanel to a new ChartPanel
myChartPanel = ChartPanelCreator.getChartPanel();
but the chart does not refresh in my applet.
I've tried jContentPane.repaint(); but no...
Suggestions?