sp.setPrefSize(600, 400);
this.canvas = new ChartCanvas(getSkinnable().getChart());
this.canvas.setTooltipEnabled(control.isTooltipEnabled());
this.canvas.addChartMouseListener(control);
this.canvas.widthProperty().bind(sp.widthProperty());
this.canvas.heightProperty().bind(sp.heightProperty());
this.canvas.addMouseHandler(new ZoomHandlerFX("zoom", control));
sp.getChildren().add(this.canvas);
borderPane.setCenter(sp);