JavaFX provides the following chart components for data visualization in the javafx.scene.chart package:
- LineChart: Adds a line between the data points in a series; typically used to present the trends over time
- AreaChart: Similar to the LineChart, but fills the area between the line that connects the data points and the axis; typically used for comparing cumulated totals over time
- BarChart: Presents data as rectangular bars; used for visualization of discrete data
- PieChart: Presents a circle divided into segments (filled with different colors), each segment representing a value as a proportion of the total; we will demonstrate it in this section
- BubbleChart: Presents data as 2-dimensional oval shapes called bubbles that allow presenting three parameters
- ScatterChart: Presents the data points in a series as-is; useful to identify the presence of a clustering (data correlation...