원클릭으로
javafx-data-visualization-dashboards
Build JavaFX charts, dashboards, gauges, and high-volume visualizations with the right level of tooling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Build JavaFX charts, dashboards, gauges, and high-volume visualizations with the right level of tooling.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build JavaFX 3D modeling tools and print/export workflows with isolated geometry generation and preview rendering.
Choose and integrate mature third-party JavaFX control libraries for forms, productivity widgets, theming, and developer workflow support.
Build JavaFX terminal emulators or shell-style console panes with background process I/O, ANSI handling, and safe FX-thread updates.
Build node-based JavaFX workflow editors, graph canvases, and visual programming surfaces with clean model separation.
Animate JavaFX UIs with Timeline, Transition, Canvas, and AnimationTimer-based render loops.
Manage the JavaFX Application lifecycle, primary stage setup, startup sequencing, and shutdown behavior.
| name | javafx-data-visualization-dashboards |
| description | Build JavaFX charts, dashboards, gauges, and high-volume visualizations with the right level of tooling. |
| triggers | ["javafx chart","javafx dashboard","tilesfx","chartfx javafx"] |
| compatibility | {"java":"17+","javafx":"21+"} |
| category | ui-advanced |
| tags | ["charts","dashboards","gauges","visualization","analytics"] |
| metadata | {"scope":"repository","maturity":"starter"} |
| allowed-tools | ["view","rg","apply_patch"] |
Use this skill when the UI needs built-in charts, KPI dashboards, scientific plots, or high-density status panels. This skill owns chart selection, including when built-in JavaFX charts are enough and when to escalate to ecosystem libraries.
import javafx.collections.FXCollections;
import javafx.scene.chart.LineChart;
import javafx.scene.chart.NumberAxis;
import javafx.scene.chart.XYChart;
import javafx.scene.layout.BorderPane;
public class MetricsDashboard extends BorderPane {
public MetricsDashboard() {
var xAxis = new NumberAxis();
var yAxis = new NumberAxis();
var chart = new LineChart<>(xAxis, yAxis);
chart.setLegendVisible(false);
var series = new XYChart.Series<Number, Number>();
series.setData(FXCollections.observableArrayList(
new XYChart.Data<>(0, 12),
new XYChart.Data<>(1, 18),
new XYChart.Data<>(2, 15),
new XYChart.Data<>(3, 24)
));
chart.getData().add(series);
setCenter(chart);
}
}
Chart controls for straightforward business graphs.javafx-web-maps-embedded-integration.