Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. public void saveAsPng() {
  2. WritableImage image = barChart.snapshot(new SnapshotParameters(), null);
  3.  
  4. // TODO: probably use a file chooser here
  5. File file = new File("chart.png");
  6.  
  7. try {
  8. ImageIO.write(SwingFXUtils.fromFXImage(image, null), "png", file);
  9. } catch (IOException e) {
  10. // TODO: handle exception here
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement