com.github.lwhite1.tablesaw.plotting.fx.FxPlot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tablesaw Show documentation
Show all versions of tablesaw Show documentation
High-performance Java Dataframe with integrated columnar storage
The newest version!
package com.github.lwhite1.tablesaw.plotting.fx;
import javafx.embed.swing.JFXPanel;
import javax.swing.*;
/**
*
*/
public abstract class FxPlot {
public static JFXPanel getJfxPanel(String title, int width, int height) {
JFrame frame = new JFrame(title);
final JFXPanel fxPanel = new JFXPanel();
frame.add(fxPanel);
frame.setSize(width, height);
frame.setVisible(true);
frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
return fxPanel;
}
}