Uses of Class
javafx.scene.chart.XYChart.Series
Packages that use XYChart.Series
Package
Description
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
-
Uses of XYChart.Series in javafx.scene.chart
Methods in javafx.scene.chart that return types with arguments of type XYChart.SeriesModifier and TypeMethodDescriptionXYChart.dataProperty()XYCharts dataXYChart.getData()Gets the value of the property data.protected Iterator<XYChart.Series<X,Y>>XYChart.getDisplayedSeriesIterator()XYChart maintains a list of all series currently displayed this includes all current series + any series that have recently been deleted that are in the process of being faded(animated) out.Methods in javafx.scene.chart with parameters of type XYChart.SeriesModifier and TypeMethodDescriptionprotected voidAreaChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)protected voidBarChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)protected voidBubbleChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)protected voidLineChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)protected voidScatterChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)Called when a data item has been added to a series.protected voidStackedAreaChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)protected voidStackedBarChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)protected abstract voidXYChart.dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)Called when a data item has been added to a series.protected voidAreaChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)protected voidBarChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)protected voidBubbleChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)protected voidLineChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)protected voidScatterChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)Called when a data item has been removed from data model but it is still visible on the chart.protected voidStackedAreaChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)protected voidStackedBarChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)protected abstract voidXYChart.dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)Called when a data item has been removed from data model but it is still visible on the chart.protected Iterator<XYChart.Data<X,Y>>XYChart.getDisplayedDataIterator(XYChart.Series<X,Y> series)XYChart maintains a list of all items currently displayed this includes all current data + any data items recently deleted that are in the process of being faded out.protected voidXYChart.removeDataItemFromDisplay(XYChart.Series<X,Y> series, XYChart.Data<X,Y> item)This should be called from dataItemRemoved() when you are finished with any animation for deleting the item from the chart.protected voidXYChart.removeSeriesFromDisplay(XYChart.Series<X,Y> series)This should be called from seriesRemoved() when you are finished with any animation for deleting the series from the chart.protected voidAreaChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)protected voidBarChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)protected voidBubbleChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)protected voidLineChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)protected voidScatterChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)A series has been added to the charts data model.protected voidStackedAreaChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)protected voidStackedBarChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)A series has been added to the charts data model.protected abstract voidXYChart.seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)A series has been added to the charts data model.protected voidAreaChart.seriesRemoved(XYChart.Series<X,Y> series)protected voidBarChart.seriesRemoved(XYChart.Series<X,Y> series)protected voidBubbleChart.seriesRemoved(XYChart.Series<X,Y> series)protected voidLineChart.seriesRemoved(XYChart.Series<X,Y> series)protected voidScatterChart.seriesRemoved(XYChart.Series<X,Y> series)A series has been removed from the data model but it is still visible on the chart.protected voidStackedAreaChart.seriesRemoved(XYChart.Series<X,Y> series)protected voidStackedBarChart.seriesRemoved(XYChart.Series<X,Y> series)protected abstract voidXYChart.seriesRemoved(XYChart.Series<X,Y> series)A series has been removed from the data model but it is still visible on the chart.Method parameters in javafx.scene.chart with type arguments of type XYChart.SeriesModifier and TypeMethodDescriptionprotected voidXYChart.seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c)Called when each atomic change is made to the list of series for this chartvoidXYChart.setData(ObservableList<XYChart.Series<X,Y>> value)Sets the value of the property data.Constructor parameters in javafx.scene.chart with type arguments of type XYChart.SeriesModifierConstructorDescriptionAreaChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new Area Chart with the given axis and dataBarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new BarChart with the given axis and data.BarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data, double categoryGap)Construct a new BarChart with the given axis and data.BubbleChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new BubbleChart with the given axis and data.LineChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new LineChart with the given axis and data.ScatterChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new ScatterChart with the given axis and data.StackedAreaChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new Area Chart with the given axis and data.StackedBarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data)Construct a new StackedBarChart with the given axis and data.StackedBarChart(Axis<X> xAxis, Axis<Y> yAxis, ObservableList<XYChart.Series<X,Y>> data, double categoryGap)Construct a new StackedBarChart with the given axis and data.