Skip to content

Instantly share code, notes, and snippets.

View satsen's full-sized avatar

satsen

View GitHub Profile
@jewelsea
jewelsea / LineChartWithHover.java
Last active November 20, 2023 08:17
JavaFX sample to display a LineChart which shows the value of a plotted Node when you hover over the Node.
import javafx.application.Application;
import javafx.collections.*;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.chart.*;
import javafx.scene.control.Label;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.StackPane;
import javafx.scene.paint.Color;
import javafx.stage.Stage;