Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
javafx.scene.chart |
The JavaFX User Interface provides a set of chart components that
are a very convenient way for data visualization.
|
Modifier and Type | Field and Description |
---|---|
(package private) XYChart.Series<X,Y> |
XYChart.begin |
(package private) XYChart.Series<X,Y> |
XYChart.Series.next |
private XYChart.Series<X,Y> |
XYChart.Data.series
The series this data belongs to
|
private XYChart.Series<X,Y> |
LineChart.seriesOfDataRemoved |
private XYChart.Series<X,Y> |
BarChart.seriesOfDataRemoved |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<ObservableList<XYChart.Series<X,Y>>> |
XYChart.data
XYCharts data
|
private ObservableList<XYChart.Series<X,Y>> |
XYChartBuilder.data |
private java.util.Map<XYChart.Series,java.util.Map<java.lang.String,XYChart.Data<X,Y>>> |
StackedBarChart.seriesCategoryMap |
private java.util.Map<XYChart.Series,java.util.Map<java.lang.String,XYChart.Data<X,Y>>> |
BarChart.seriesCategoryMap |
private ListChangeListener<XYChart.Series<X,Y>> |
XYChart.seriesChanged
This is called when a series is added or removed from the chart
|
private java.util.Map<XYChart.Series<X,Y>,java.lang.String> |
StackedBarChart.seriesDefaultColorMap |
private java.util.Map<XYChart.Series,DoubleProperty> |
StackedAreaChart.seriesYMultiplierMap
A multiplier for teh Y values that we store for each series, it is used to animate in a new series
|
private java.util.Map<XYChart.Series,DoubleProperty> |
LineChart.seriesYMultiplierMap
A multiplier for teh Y values that we store for each series, it is used to animate in a new series
|
private java.util.Map<XYChart.Series,DoubleProperty> |
AreaChart.seriesYMultiplierMap
A multiplier for teh Y values that we store for each series, it is used to animate in a new series
|
Modifier and Type | Method and Description |
---|---|
ObjectProperty<ObservableList<XYChart.Series<X,Y>>> |
XYChart.dataProperty()
XYCharts data
|
ObservableList<XYChart.Series<X,Y>> |
XYChart.getData()
Gets the value of the property data.
|
protected java.util.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.
|
Modifier and Type | Method and Description |
---|---|
private Node |
StackedBarChart.createBar(XYChart.Series series,
int seriesIndex,
XYChart.Data item,
int itemIndex) |
private Node |
BarChart.createBar(XYChart.Series series,
int seriesIndex,
XYChart.Data item,
int itemIndex) |
private Node |
BubbleChart.createBubble(XYChart.Series<X,Y> series,
int seriesIndex,
XYChart.Data item,
int itemIndex)
Create a Bubble for a given data item if it doesn't already have a node
|
private Timeline |
StackedBarChart.createDataRemoveTimeline(XYChart.Data<X,Y> item,
Node bar,
XYChart.Series<X,Y> series) |
private Timeline |
LineChart.createDataRemoveTimeline(XYChart.Data<X,Y> item,
Node symbol,
XYChart.Series<X,Y> series) |
private Timeline |
BarChart.createDataRemoveTimeline(XYChart.Data<X,Y> item,
Node bar,
XYChart.Series<X,Y> series) |
private Node |
LineChart.createSymbol(XYChart.Series<X,Y> series,
int seriesIndex,
XYChart.Data item,
int itemIndex) |
private Node |
StackedAreaChart.createSymbol(XYChart.Series series,
int seriesIndex,
XYChart.Data item,
int itemIndex) |
private Node |
AreaChart.createSymbol(XYChart.Series series,
int seriesIndex,
XYChart.Data item,
int itemIndex) |
protected abstract void |
XYChart.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 void |
StackedBarChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected void |
StackedAreaChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected void |
ScatterChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected void |
LineChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected void |
BubbleChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected void |
BarChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected void |
AreaChart.dataItemAdded(XYChart.Series<X,Y> series,
int itemIndex,
XYChart.Data<X,Y> item) |
protected abstract void |
XYChart.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 void |
StackedBarChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
protected void |
StackedAreaChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
protected void |
ScatterChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
protected void |
LineChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
protected void |
BubbleChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
protected void |
BarChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
protected void |
AreaChart.dataItemRemoved(XYChart.Data<X,Y> item,
XYChart.Series<X,Y> series) |
private void |
XYChart.dataItemsChanged(XYChart.Series<X,Y> series,
java.util.List<XYChart.Data<X,Y>> removed,
int addedFrom,
int addedTo,
boolean permutation) |
private XYChart.Data<X,Y> |
StackedBarChart.getDataItem(XYChart.Series<X,Y> series,
int seriesIndex,
int itemIndex,
java.lang.String category) |
private XYChart.Data<X,Y> |
BarChart.getDataItem(XYChart.Series<X,Y> series,
int seriesIndex,
int itemIndex,
java.lang.String category) |
protected java.util.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.
|
(package private) int |
XYChart.getSeriesIndex(XYChart.Series series)
Get the index of the series in the series linked list.
|
protected void |
XYChart.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 void |
XYChart.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 abstract void |
XYChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex)
A series has been added to the charts data model.
|
protected void |
StackedBarChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected void |
StackedAreaChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected void |
ScatterChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected void |
LineChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected void |
BubbleChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected void |
BarChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected void |
AreaChart.seriesAdded(XYChart.Series<X,Y> series,
int seriesIndex) |
protected abstract void |
XYChart.seriesRemoved(XYChart.Series<X,Y> series)
A series has been removed from the data model but it is still visible on the chart.
|
protected void |
StackedBarChart.seriesRemoved(XYChart.Series<X,Y> series) |
protected void |
StackedAreaChart.seriesRemoved(XYChart.Series<X,Y> series) |
protected void |
ScatterChart.seriesRemoved(XYChart.Series<X,Y> series) |
protected void |
LineChart.seriesRemoved(XYChart.Series<X,Y> series) |
protected void |
BubbleChart.seriesRemoved(XYChart.Series<X,Y> series) |
protected void |
BarChart.seriesRemoved(XYChart.Series<X,Y> series) |
protected void |
AreaChart.seriesRemoved(XYChart.Series<X,Y> series) |
private void |
XYChart.Data.setSeries(XYChart.Series<X,Y> series) |
Modifier and Type | Method and Description |
---|---|
B |
XYChartBuilder.data(ObservableList<XYChart.Series<X,Y>> x)
Set the value of the
data property for the instance constructed by this builder. |
protected void |
XYChart.seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c)
Called when each atomic change is made to the list of series for this chart
|
protected void |
StackedAreaChart.seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c) |
protected void |
LineChart.seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c) |
protected void |
AreaChart.seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c) |
void |
XYChart.setData(ObservableList<XYChart.Series<X,Y>> value)
Sets the value of the property data.
|
Constructor and Description |
---|
AreaChart(Axis<X> xAxis,
Axis<Y> yAxis,
ObservableList<XYChart.Series<X,Y>> data)
Construct a new Area Chart with the given axis and data
|
BarChart(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.
|
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to