/* Add TimeComboBox and PlotterPanel to the frame. */
JPanel topPanel = new JPanel(new BorderLayout());
JPanel controlPanel =
new JPanel(new FlowLayout(FlowLayout.CENTER, 20, 5));
controlPanel.add(new JLabel("Time Range:"));
plotterPanel = new PlotterPanel(stats, Unit.NONE, false);
plotterPanel.getPlotter().createSequence
(stats, stats, statsColor, true);
TimeComboBox timeComboBox =
new TimeComboBox(plotterPanel.getPlotter());
controlPanel.add(timeComboBox);