scrollpane.setEnabled(true);
scrollpane.setMinimumSize(new Dimension(120,250));
scrollpane.setVisible(false);
sub.add(scrollpane,new GridBagConstraints(0,0, 1, 1, 0.2, 0.2, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(2,2,2,2), 1, 1));
chartPanel = new ChartPanel(null);
sub.add(chartPanel,new GridBagConstraints(1, 0, 2, 1, 1, 1, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets(2,2,2,2), 1, 1));
model = new NonNumericalChartModel(type);
}