{
super(parent, 640, 480, true);
initStyle(StageStyle.DECORATED);
StackPane root = new StackPane();
Scene scene = new Scene(root, width, height);
canvas.widthProperty().bind(root.widthProperty());
canvas.heightProperty().bind(root.heightProperty());
gc.setFont(new Font("monospace", 10));
root.getChildren().add(canvas);
setTitle("JITWatch Compilations Timeline");
setScene(scene);
show();