Working with JavaFX Charts (Release 8) (original) (raw)
This tutorial describes the graphical charts available in the javafx.scene.chart
package of the JavaFX SDK and contains the following chapters:
- Pie Chart
Describes a chart that represents data in a form of circle divided into triangular wedges called slices. - Line Chart
Describes the line chart, a type of two-axis chart that presents data as a series of points connected by straight lines - Area Chart
Describes the area chart that presents data as an area between a series of points connected by straight lines and the axis. - Bubble Chart
Describes the bubble chart, a two-axis chart that plots bubbles for the data points in a series. - Scatter Chart
Describes the scatter chart, a two-axis chart that presents its data as a set of points. - Bar Chart
Describes the bar chart, a two-axis chart that presents discrete data with rectangular bars.
Each chapter provides code samples and applications to illustrate how to use a particular chart. You can find the source files of the applications and the corresponding NetBeans projects in the Chart Samples appendix.