Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
tech.tablesaw.api.plot.Pie Maven / Gradle / Ivy
package tech.tablesaw.api.plot;
import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.scene.Scene;
import javafx.scene.chart.PieChart;
import tech.tablesaw.api.CategoryColumn;
import tech.tablesaw.api.IntColumn;
import tech.tablesaw.api.NumericColumn;
import tech.tablesaw.api.ShortColumn;
import tech.tablesaw.plotting.fx.FxPie;
import tech.tablesaw.plotting.fx.FxPlot;
import tech.tablesaw.reducing.NumericSummaryTable;
import javax.swing.*;
public class Pie extends FxPlot {
private static final String WINDOW_TITLE = "Tablesaw";
public static void show(String title, CategoryColumn categoryColumn, NumericColumn numericColumn) throws Exception {
SwingUtilities.invokeLater(() -> {
try {
initAndShowGUI(title, categoryColumn, numericColumn, 640, 480);
} catch (Exception e) {
e.printStackTrace();
}
});
}
public static void show(String title, ShortColumn categoryColumn, NumericColumn numericColumn) throws Exception {
SwingUtilities.invokeLater(() -> {
try {
initAndShowGUI(title, categoryColumn, numericColumn, 640, 480);
} catch (Exception e) {
e.printStackTrace();
}
});
}
public static void show(String title, IntColumn categoryColumn, NumericColumn numericColumn) throws Exception {
SwingUtilities.invokeLater(() -> {
try {
initAndShowGUI(title, categoryColumn, numericColumn, 640, 480);
} catch (Exception e) {
e.printStackTrace();
}
});
}
public static void show(String title, NumericSummaryTable table) throws Exception {
SwingUtilities.invokeLater(() -> {
try {
if (table.column(0) instanceof CategoryColumn) {
initAndShowGUI(title, table.categoryColumn(0), table.nCol(1), 640, 480);
}
if (table.column(0) instanceof ShortColumn) {
initAndShowGUI(title, table.shortColumn(0), table.nCol(1), 640, 480);
}
if (table.column(0) instanceof IntColumn) {
initAndShowGUI(title, table.intColumn(0), table.nCol(1), 640, 480);
}
} catch (Exception e) {
e.printStackTrace();
}
});
}
private static void initAndShowGUI(String title,
CategoryColumn categoryColumn,
NumericColumn numericColumn,
int width,
int height) throws Exception {
final JFXPanel fxPanel = getJfxPanel(WINDOW_TITLE, width, height);
PieChart chart = FxPie.chart(title, categoryColumn, numericColumn);
Platform.runLater(() -> initFX(fxPanel, chart));
}
private static void initAndShowGUI(String title,
ShortColumn categoryColumn,
NumericColumn numericColumn,
int width,
int height) throws Exception {
final JFXPanel fxPanel = getJfxPanel(WINDOW_TITLE, width, height);
PieChart chart = FxPie.chart(title, categoryColumn, numericColumn);
Platform.runLater(() -> initFX(fxPanel, chart));
}
private static void initAndShowGUI(String title,
IntColumn categoryColumn,
NumericColumn numericColumn,
int width,
int height) throws Exception {
final JFXPanel fxPanel = getJfxPanel(WINDOW_TITLE, width, height);
PieChart chart = FxPie.chart(title, categoryColumn, numericColumn);
Platform.runLater(() -> initFX(fxPanel, chart));
}
private static void initFX(JFXPanel fxPanel, PieChart chart) {
// This method is invoked on the JavaFX thread
Scene scene = new Scene(chart, chart.getWidth(), chart.getHeight());
fxPanel.setScene(scene);
}
}