I'm trying to make bar chart by Javafx. However It quite small to see it.

I want to make it more attractive like
Here is code's program
 public class Main extends Application {
 public static void main(String[] args) {
  launch(args);
 }
  @Override
  public void start(Stage stage) throws Exception {
  stage.setTitle("JavaFX Chart Demo");
  StackPane pane = new StackPane();
  pane.getChildren().add(createBarChart());
  stage.setScene(new Scene(pane, 400, 200));
  stage.show();
 }
 public ObservableList<XYChart.Series<String, Double>>
     getDummyChartData() {
  ObservableList<XYChart.Series<String, Double>> data =
     FXCollections.observableArrayList();
  Series<String, Double> as = new Series<>();
  Series<String, Double> bs = new Series<>();
  Series<String, Double> cs = new Series<>();
  Series<String, Double> ds = new Series<>();
  Series<String, Double> es = new Series<>();
  Series<String, Double> fs = new Series<>();
  as.setName("A-Series");
  bs.setName("B-Series");
  cs.setName("C-Series");
  ds.setName("D-Series");
  es.setName("E-Series");
  fs.setName("F-Series");
  Random r = new Random();
  for (int i = 1900; i < 2017; i += 10) {
     as.getData().add(new XYChart.Data<>
     (Integer.toString(i), r.nextDouble()));
     bs.getData().add(new XYChart.Data<>
     (Integer.toString(i), r.nextDouble()));
     cs.getData().add(new XYChart.Data<>
     (Integer.toString(i), r.nextDouble()));
     ds.getData().add(new XYChart.Data<>
     (Integer.toString(i), r.nextDouble()));
     es.getData().add(new XYChart.Data<>
     (Integer.toString(i), r.nextDouble()));
     fs.getData().add(new XYChart.Data<>
     (Integer.toString(i), r.nextDouble()));
  }
  data.addAll(as, bs, cs, ds, es, fs);
  return data;
 }
 public XYChart<CategoryAxis, NumberAxis>
     createBarChart() {
  CategoryAxis xAxis = new CategoryAxis();
  NumberAxis yAxis = new NumberAxis();
  BarChart bc = new BarChart<>(xAxis, yAxis);
  bc.setData(getDummyChartData());
  bc.setTitle("Bar Chart on Random Number");
  return bc;
 }
 }
Please help me how to get it by Javafx. I found it can be solve by JFree Chart However.I don't know how to make it by BarChart javafX. It's really challenge to me these day. Thank you
