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);
topPanel.add(controlPanel, BorderLayout.CENTER);
add(topPanel, BorderLayout.NORTH);
add(plotterPanel, BorderLayout.CENTER);