All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lwhite1.tablesaw.plotting.fx.FxPlot Maven / Gradle / Ivy

There is a newer version: 0.7.7.3
Show 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;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy