*/
public NGraphPanel(int graphCount) {
this.graphComponents = new GraphComponent[graphCount];
this.scrollPanes = new JScrollPane[graphCount];
this.splitPane = new NSplitPane(NSplitPane.VERTICAL_SPLIT);
this.scrollBar = new JScrollBar(JScrollBar.HORIZONTAL);
scrollBar.setUnitIncrement(SCROLL_UNIT_INCREMENT);
scrollBar.setBlockIncrement(SCROLL_BLOCK_INCREMENT);
for (int i = 0; i < graphCount; i++) {
graphComponents[i] = new GraphComponent();