- java.lang.Object
-
- javafx.scene.Node
-
- javafx.scene.Parent
-
- javafx.scene.layout.Region
-
- javafx.scene.chart.Chart
-
- javafx.scene.chart.XYChart<X,Y>
-
- All Implemented Interfaces:
-
Styleable
,EventTarget
- 已知直接子类:
-
AreaChart
,BarChart
,BubbleChart
,LineChart
,ScatterChart
,StackedAreaChart
,StackedBarChart
public abstract class XYChart<X,Y> extends Chart
所有2轴图的图表基类。 它负责绘制两个轴和绘图内容。 它包含了绘图中所有内容的列表,XYChart的实现可以将节点添加到需要呈现的列表中。可以在数据项/符号上安装工具提示。 例如,以下代码段在第一个数据项上安装Tooltip。
XYChart.Data item = ( XYChart.Data)series.getData().get(0); Tooltip.install(item.getNode(), new Tooltip("Symbol-0"));
- 从以下版本开始:
- JavaFX 2.0
-
-
Property Summary
Properties Type Property 描述 BooleanProperty
alternativeColumnFillVisible
如果为真,则替代垂直列将填充BooleanProperty
alternativeRowFillVisible
如果为真,则替代的水平行将填充ObjectProperty<ObservableList<XYChart.Series<X,Y>>>
data
XYCharts数据BooleanProperty
horizontalGridLinesVisible
如果水平网格线应绘制,则为真BooleanProperty
horizontalZeroLineVisible
如果这是真的并且横轴具有正值和负值,则在零点处将绘制另外的轴线BooleanProperty
verticalGridLinesVisible
如果绘制垂直网格线,则为真BooleanProperty
verticalZeroLineVisible
如果这是真的并且垂直轴具有正值和负值,则在零点处将绘制另外的轴线-
Properties inherited from class javafx.scene.chart.Chart
animated, legend, legendSide, legendVisible, title, titleSide
-
Properties inherited from class javafx.scene.Node
accessibleHelp, accessibleRoleDescription, accessibleRole, accessibleText, blendMode, boundsInLocal, boundsInParent, cacheHint, cache, clip, cursor, depthTest, disabled, disable, effectiveNodeOrientation, effect, eventDispatcher, focused, focusTraversable, hover, id, inputMethodRequests, layoutBounds, layoutX, layoutY, localToParentTransform, localToSceneTransform, managed, mouseTransparent, nodeOrientation, onContextMenuRequested, onDragDetected, onDragDone, onDragDropped, onDragEntered, onDragExited, onDragOver, onInputMethodTextChanged, onKeyPressed, onKeyReleased, onKeyTyped, onMouseClicked, onMouseDragEntered, onMouseDragExited, onMouseDragged, onMouseDragOver, onMouseDragReleased, onMouseEntered, onMouseExited, onMouseMoved, onMousePressed, onMouseReleased, onRotate, onRotationFinished, onRotationStarted, onScrollFinished, onScroll, onScrollStarted, onSwipeDown, onSwipeLeft, onSwipeRight, onSwipeUp, onTouchMoved, onTouchPressed, onTouchReleased, onTouchStationary, onZoomFinished, onZoom, onZoomStarted, opacity, parent, pickOnBounds, pressed, rotate, rotationAxis, scaleX, scaleY, scaleZ, scene, style, translateX, translateY, translateZ, viewOrder, visible
-
Properties inherited from class javafx.scene.Parent
needsLayout
-
Properties inherited from class javafx.scene.layout.Region
background, border, cacheShape, centerShape, height, insets, maxHeight, maxWidth, minHeight, minWidth, opaqueInsets, padding, prefHeight, prefWidth, scaleShape, shape, snapToPixel, width
-
-
Nested Class Summary
Nested Classes Modifier and Type Class 描述 static class
XYChart.Data<X,Y>
具有2轴图数据的单个数据项static class
XYChart.Series<X,Y>
一系列命名的数据项
-
Field Summary
-
Fields inherited from class javafx.scene.Node
BASELINE_OFFSET_SAME_AS_HEIGHT
-
Fields inherited from class javafx.scene.layout.Region
USE_COMPUTED_SIZE, USE_PREF_SIZE
-
-
方法摘要
所有方法 静态方法 接口方法 抽象方法 具体的方法 Modifier and Type 方法 描述 BooleanProperty
alternativeColumnFillVisibleProperty()
如果为真,则替代垂直列将填充BooleanProperty
alternativeRowFillVisibleProperty()
如果为真,则替代的水平行将填充protected ObjectProperty<Object>
currentDisplayedExtraValueProperty(XYChart.Data<X,Y> item)
当前显示的额外值属性。protected ObjectProperty<X>
currentDisplayedXValueProperty(XYChart.Data<X,Y> item)
在X轴上绘制的当前显示的数据值属性。protected ObjectProperty<Y>
currentDisplayedYValueProperty(XYChart.Data<X,Y> item)
在Y轴上绘制的当前显示的数据值属性。protected abstract void
dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)
将数据项添加到系列时调用。protected abstract void
dataItemChanged(XYChart.Data<X,Y> item)
数据项已更改时调用,即其xValue,yValue或extraValue已更改。protected abstract void
dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)
当数据项已从数据模型中删除但在图表上仍然可见时调用。ObjectProperty<ObservableList<XYChart.Series<X,Y>>>
dataProperty()
XYCharts数据static List<CssMetaData<? extends Styleable,?>>
getClassCssMetaData()
List<CssMetaData<? extends Styleable,?>>
getCssMetaData()
该方法应该委托给Node.getClassCssMetaData()
,以便可以访问节点的CssMetaData而不需要反射。protected Object
getCurrentDisplayedExtraValue(XYChart.Data<X,Y> item)
当前显示的数据额外值。protected X
getCurrentDisplayedXValue(XYChart.Data<X,Y> item)
当前显示的数据值绘制在X轴上。protected Y
getCurrentDisplayedYValue(XYChart.Data<X,Y> item)
当前显示的数据值绘制在Y轴上。ObservableList<XYChart.Series<X,Y>>
getData()
获取属性数据的值。protected Iterator<XYChart.Data<X,Y>>
getDisplayedDataIterator(XYChart.Series<X,Y> series)
XYChart维护当前显示的所有项目的列表,其中包括所有当前数据+最近删除的正在淡出的数据项。protected Iterator<XYChart.Series<X,Y>>
getDisplayedSeriesIterator()
XYChart维护当前显示的所有系列的列表,其中包括所有当前系列+最近被删除的系列,它们正在被褪色(动画)过程中。protected ObservableList<Node>
getPlotChildren()
情节中所有内容的可修改和可观察的列表。boolean
getVerticalGridLinesVisible()
指示垂直网格线是否可见。Axis<X>
getXAxis()
获取X轴,默认情况下,它是沿着图的底部Axis<Y>
getYAxis()
获取Y轴,默认情况下它在图的左侧BooleanProperty
horizontalGridLinesVisibleProperty()
如果水平网格线应绘制,则为真BooleanProperty
horizontalZeroLineVisibleProperty()
如果这是真的并且横轴具有正值和负值,则在零点处将绘制另外的轴线boolean
isAlternativeColumnFillVisible()
获取propertyColumnFillVisible属性的值。boolean
isAlternativeRowFillVisible()
获取属性alternativeRowFillVisible的值。boolean
isHorizontalGridLinesVisible()
获取属性horizontalGridLinesVisible的值。boolean
isHorizontalZeroLineVisible()
获取属性horizontalZeroLineVisible的值。boolean
isVerticalZeroLineVisible()
获取属性verticalZeroLineVisible的值。protected void
layoutChartChildren(double top, double left, double width, double height)
调用更新和布局从getChartChildren()protected abstract void
layoutPlotChildren()
被要求更新和布局情节儿童。protected void
removeDataItemFromDisplay(XYChart.Series<X,Y> series, XYChart.Data<X,Y> item)
当您完成从图表中删除该项目的任何动画后,应从dataItemRemoved()中调用此方法。protected void
removeSeriesFromDisplay(XYChart.Series<X,Y> series)
当您完成从图表中删除该系列的任何动画后,应从serialRemoved()中调用这个。protected abstract void
seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)
一系列已经添加到图表数据模型中。protected void
seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c)
当将每个原子更改作为此图表的系列列表时调用protected abstract void
seriesRemoved(XYChart.Series<X,Y> series)
数据模型中已经删除了一个系列,但它仍然可以在图表上显示。void
setAlternativeColumnFillVisible(boolean value)
设置propertyColumnFillVisible属性的值。void
setAlternativeRowFillVisible(boolean value)
设置属性alternativeRowFillVisible的值。protected void
setCurrentDisplayedExtraValue(XYChart.Data<X,Y> item, Object value)
设置当前显示的数据额外值。protected void
setCurrentDisplayedXValue(XYChart.Data<X,Y> item, X value)
设置在X轴上绘制的当前显示数据值。protected void
setCurrentDisplayedYValue(XYChart.Data<X,Y> item, Y value)
设置在Y轴上绘制的当前显示数据值。void
setData(ObservableList<XYChart.Series<X,Y>> value)
设置属性数据的值。void
setHorizontalGridLinesVisible(boolean value)
设置属性horizontalGridLinesVisible的值。void
setHorizontalZeroLineVisible(boolean value)
设置属性horizontalZeroLineVisible的值。void
setVerticalGridLinesVisible(boolean value)
设置属性verticalGridLinesVisible的值。void
setVerticalZeroLineVisible(boolean value)
设置属性verticalZeroLineVisible的值。protected void
updateAxisRange()
当范围已经无效并且我们需要更新时,这被称为。protected void
updateLegend()
每当添加或删除一个系列并且需要更新图例时,就会调用这一点BooleanProperty
verticalGridLinesVisibleProperty()
如果绘制垂直网格线,则为真BooleanProperty
verticalZeroLineVisibleProperty()
如果这是真的并且垂直轴具有正值和负值,则在零点处将绘制另外的轴线-
Methods inherited from class javafx.scene.chart.Chart
animate, animatedProperty, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, getAnimated, getChartChildren, getLegend, getLegendSide, getTitle, getTitleSide, isLegendVisible, layoutChildren, legendProperty, legendSideProperty, legendVisibleProperty, requestChartLayout, setAnimated, setLegend, setLegendSide, setLegendVisible, setTitle, setTitleSide, shouldAnimate, titleProperty, titleSideProperty
-
Methods inherited from class javafx.scene.Node
accessibleHelpProperty, accessibleRoleDescriptionProperty, accessibleRoleProperty, accessibleTextProperty, addEventFilter, addEventHandler, applyCss, autosize, blendModeProperty, boundsInLocalProperty, boundsInParentProperty, buildEventDispatchChain, cacheHintProperty, cacheProperty, clipProperty, computeAreaInScreen, contains, contains, cursorProperty, depthTestProperty, disabledProperty, disableProperty, effectiveNodeOrientationProperty, effectProperty, eventDispatcherProperty, executeAccessibleAction, fireEvent, focusedProperty, focusTraversableProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getContentBias, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInitialCursor, getInitialFocusTraversable, getInputMethodRequests, getLayoutBounds, getLayoutX, getLayoutY, getLocalToParentTransform, getLocalToSceneTransform, getNodeOrientation, getOnContextMenuRequested, getOnDragDetected, getOnDragDone, getOnDragDropped, getOnDragEntered, getOnDragExited, getOnDragOver, getOnInputMethodTextChanged, getOnKeyPressed, getOnKeyReleased, getOnKeyTyped, getOnMouseClicked, getOnMouseDragEntered, getOnMouseDragExited, getOnMouseDragged, getOnMouseDragOver, getOnMouseDragReleased, getOnMouseEntered, getOnMouseExited, getOnMouseMoved, getOnMousePressed, getOnMouseReleased, getOnRotate, getOnRotationFinished, getOnRotationStarted, getOnScroll, getOnScrollFinished, getOnScrollStarted, getOnSwipeDown, getOnSwipeLeft, getOnSwipeRight, getOnSwipeUp, getOnTouchMoved, getOnTouchPressed, getOnTouchReleased, getOnTouchStationary, getOnZoom, getOnZoomFinished, getOnZoomStarted, getOpacity, getParent, getProperties, getPseudoClassStates, getRotate, getRotationAxis, getScaleX, getScaleY, getScaleZ, getScene, getStyle, getStyleableParent, getStyleClass, getTransforms, getTranslateX, getTranslateY, getTranslateZ, getTypeSelector, getUserData, getViewOrder, hasProperties, hoverProperty, idProperty, inputMethodRequestsProperty, intersects, intersects, isCache, isDisable, isDisabled, isFocused, isFocusTraversable, isHover, isManaged, isMouseTransparent, isPickOnBounds, isPressed, isVisible, layoutBoundsProperty, layoutXProperty, layoutYProperty, localToParent, localToParent, localToParent, localToParent, localToParent, localToParentTransformProperty, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToScene, localToSceneTransformProperty, localToScreen, localToScreen, localToScreen, localToScreen, localToScreen, lookupAll, managedProperty, mouseTransparentProperty, nodeOrientationProperty, notifyAccessibleAttributeChanged, onContextMenuRequestedProperty, onDragDetectedProperty, onDragDoneProperty, onDragDroppedProperty, onDragEnteredProperty, onDragExitedProperty, onDragOverProperty, onInputMethodTextChangedProperty, onKeyPressedProperty, onKeyReleasedProperty, onKeyTypedProperty, onMouseClickedProperty, onMouseDragEnteredProperty, onMouseDragExitedProperty, onMouseDraggedProperty, onMouseDragOverProperty, onMouseDragReleasedProperty, onMouseEnteredProperty, onMouseExitedProperty, onMouseMovedProperty, onMousePressedProperty, onMouseReleasedProperty, onRotateProperty, onRotationFinishedProperty, onRotationStartedProperty, onScrollFinishedProperty, onScrollProperty, onScrollStartedProperty, onSwipeDownProperty, onSwipeLeftProperty, onSwipeRightProperty, onSwipeUpProperty, onTouchMovedProperty, onTouchPressedProperty, onTouchReleasedProperty, onTouchStationaryProperty, onZoomFinishedProperty, onZoomProperty, onZoomStartedProperty, opacityProperty, parentProperty, parentToLocal, parentToLocal, parentToLocal, parentToLocal, parentToLocal, pickOnBoundsProperty, pressedProperty, pseudoClassStateChanged, relocate, removeEventFilter, removeEventHandler, requestFocus, resizeRelocate, rotateProperty, rotationAxisProperty, scaleXProperty, scaleYProperty, scaleZProperty, sceneProperty, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, sceneToLocal, screenToLocal, screenToLocal, screenToLocal, setAccessibleHelp, setAccessibleRole, setAccessibleRoleDescription, setAccessibleText, setBlendMode, setCache, setCacheHint, setClip, setCursor, setDepthTest, setDisable, setDisabled, setEffect, setEventDispatcher, setEventHandler, setFocused, setFocusTraversable, setHover, setId, setInputMethodRequests, setLayoutX, setLayoutY, setManaged, setMouseTransparent, setNodeOrientation, setOnContextMenuRequested, setOnDragDetected, setOnDragDone, setOnDragDropped, setOnDragEntered, setOnDragExited, setOnDragOver, setOnInputMethodTextChanged, setOnKeyPressed, setOnKeyReleased, setOnKeyTyped, setOnMouseClicked, setOnMouseDragEntered, setOnMouseDragExited, setOnMouseDragged, setOnMouseDragOver, setOnMouseDragReleased, setOnMouseEntered, setOnMouseExited, setOnMouseMoved, setOnMousePressed, setOnMouseReleased, setOnRotate, setOnRotationFinished, setOnRotationStarted, setOnScroll, setOnScrollFinished, setOnScrollStarted, setOnSwipeDown, setOnSwipeLeft, setOnSwipeRight, setOnSwipeUp, setOnTouchMoved, setOnTouchPressed, setOnTouchReleased, setOnTouchStationary, setOnZoom, setOnZoomFinished, setOnZoomStarted, setOpacity, setPickOnBounds, setPressed, setRotate, setRotationAxis, setScaleX, setScaleY, setScaleZ, setStyle, setTranslateX, setTranslateY, setTranslateZ, setUserData, setViewOrder, setVisible, snapshot, snapshot, startDragAndDrop, startFullDrag, styleProperty, toBack, toFront, toString, translateXProperty, translateYProperty, translateZProperty, usesMirroring, viewOrderProperty, visibleProperty
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javafx.scene.Parent
getBaselineOffset, getChildren, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, lookup, needsLayoutProperty, queryAccessibleAttribute, requestLayout, requestParentLayout, setNeedsLayout, updateBounds
-
Methods inherited from class javafx.scene.layout.Region
backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, computeMaxHeight, computeMaxWidth, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getUserAgentStylesheet, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, isResizable, isScaleShape, isSnapToPixel, layoutInArea, layoutInArea, layoutInArea, layoutInArea, maxHeight, maxHeightProperty, maxWidth, maxWidthProperty, minHeight, minHeightProperty, minWidth, minWidthProperty, opaqueInsetsProperty, paddingProperty, positionInArea, positionInArea, prefHeight, prefHeightProperty, prefWidth, prefWidthProperty, resize, scaleShapeProperty, setBackground, setBorder, setCacheShape, setCenterShape, setHeight, setMaxHeight, setMaxSize, setMaxWidth, setMinHeight, setMinSize, setMinWidth, setOpaqueInsets, setPadding, setPrefHeight, setPrefSize, setPrefWidth, setScaleShape, setShape, setSnapToPixel, setWidth, shapeProperty, snappedBottomInset, snappedLeftInset, snappedRightInset, snappedTopInset, snapPosition, snapPositionX, snapPositionY, snapSize, snapSizeX, snapSizeY, snapSpace, snapSpaceX, snapSpaceY, snapToPixelProperty, widthProperty
-
Methods inherited from interface javafx.css.Styleable
getStyleableNode
-
-
-
-
Property Detail
-
data
public final ObjectProperty<ObservableList<XYChart.Series<X,Y>>> dataProperty
XYCharts数据- 另请参见:
-
getData()
,setData(ObservableList)
-
verticalGridLinesVisible
public final BooleanProperty verticalGridLinesVisibleProperty
如果绘制垂直网格线,则为真
-
horizontalGridLinesVisible
public final BooleanProperty horizontalGridLinesVisibleProperty
如果水平网格线应绘制,则为真
-
alternativeColumnFillVisible
public final BooleanProperty alternativeColumnFillVisibleProperty
如果为真,则替代垂直列将填充
-
alternativeRowFillVisible
public final BooleanProperty alternativeRowFillVisibleProperty
如果为真,则替代的水平行将填充
-
verticalZeroLineVisible
public final BooleanProperty verticalZeroLineVisibleProperty
如果这是真的并且垂直轴具有正值和负值,则在零点处将绘制另外的轴线- Default value:
- 真正
- 另请参见:
-
isVerticalZeroLineVisible()
,setVerticalZeroLineVisible(boolean)
-
horizontalZeroLineVisible
public final BooleanProperty horizontalZeroLineVisibleProperty
如果这是真的并且横轴具有正值和负值,则在零点处将绘制另外的轴线- Default value:
- 真正
- 另请参见:
-
isHorizontalZeroLineVisible()
,setHorizontalZeroLineVisible(boolean)
-
-
方法详细信息
-
getData
public final ObservableList<XYChart.Series<X,Y>> getData()
获取属性数据的值。- Property description:
- XYCharts数据
-
setData
public final void setData(ObservableList<XYChart.Series<X,Y>> value)
设置属性数据的值。- Property description:
- XYCharts数据
-
dataProperty
public final ObjectProperty<ObservableList<XYChart.Series<X,Y>>> dataProperty()
XYCharts数据- 另请参见:
-
getData()
,setData(ObservableList)
-
getVerticalGridLinesVisible
public final boolean getVerticalGridLinesVisible()
指示垂直网格线是否可见。- 结果
- 如果verticalGridLines可见,则为true否则为false。
- 另请参见:
-
verticalGridLinesVisible
-
setVerticalGridLinesVisible
public final void setVerticalGridLinesVisible(boolean value)
设置属性verticalGridLinesVisible的值。- Property description:
- 如果绘制垂直网格线,则为真
-
verticalGridLinesVisibleProperty
public final BooleanProperty verticalGridLinesVisibleProperty()
如果绘制垂直网格线,则为真
-
isHorizontalGridLinesVisible
public final boolean isHorizontalGridLinesVisible()
获取属性horizontalGridLinesVisible的值。- Property description:
- 如果水平网格线应绘制,则为真
-
setHorizontalGridLinesVisible
public final void setHorizontalGridLinesVisible(boolean value)
设置属性horizontalGridLinesVisible的值。- Property description:
- 如果水平网格线应绘制,则为真
-
horizontalGridLinesVisibleProperty
public final BooleanProperty horizontalGridLinesVisibleProperty()
如果水平网格线应绘制,则为真
-
isAlternativeColumnFillVisible
public final boolean isAlternativeColumnFillVisible()
获取propertyColumnFillVisible属性的值。- Property description:
- 如果为真,则替代垂直列将填充
-
setAlternativeColumnFillVisible
public final void setAlternativeColumnFillVisible(boolean value)
设置propertyColumnFillVisible属性的值。- Property description:
- 如果为真,则替代垂直列将填充
-
alternativeColumnFillVisibleProperty
public final BooleanProperty alternativeColumnFillVisibleProperty()
如果为真,则替代垂直列将填充
-
isAlternativeRowFillVisible
public final boolean isAlternativeRowFillVisible()
获取属性alternativeRowFillVisible的值。- Property description:
- 如果为真,则替代的水平行将填充
-
setAlternativeRowFillVisible
public final void setAlternativeRowFillVisible(boolean value)
设置属性alternativeRowFillVisible的值。- Property description:
- 如果为真,则替代的水平行将填充
-
alternativeRowFillVisibleProperty
public final BooleanProperty alternativeRowFillVisibleProperty()
如果为真,则替代的水平行将填充
-
isVerticalZeroLineVisible
public final boolean isVerticalZeroLineVisible()
获取属性verticalZeroLineVisible的值。- Property description:
- 如果这是真的并且垂直轴具有正值和负值,则在零点处将绘制另外的轴线
- Default value:
- 真正
-
setVerticalZeroLineVisible
public final void setVerticalZeroLineVisible(boolean value)
设置属性verticalZeroLineVisible的值。- Property description:
- 如果这是真的并且垂直轴具有正值和负值,则在零点处将绘制另外的轴线
- Default value:
- 真正
-
verticalZeroLineVisibleProperty
public final BooleanProperty verticalZeroLineVisibleProperty()
如果这是真的并且垂直轴具有正值和负值,则在零点处将绘制另外的轴线- Default value:
- 真正
- 另请参见:
-
isVerticalZeroLineVisible()
,setVerticalZeroLineVisible(boolean)
-
isHorizontalZeroLineVisible
public final boolean isHorizontalZeroLineVisible()
获取属性horizontalZeroLineVisible的值。- Property description:
- 如果这是真的并且横轴具有正值和负值,则在零点处将绘制另外的轴线
- Default value:
- 真正
-
setHorizontalZeroLineVisible
public final void setHorizontalZeroLineVisible(boolean value)
设置属性horizontalZeroLineVisible的值。- Property description:
- 如果这是真的并且横轴具有正值和负值,则在零点处将绘制另外的轴线
- Default value:
- 真正
-
horizontalZeroLineVisibleProperty
public final BooleanProperty horizontalZeroLineVisibleProperty()
如果这是真的并且横轴具有正值和负值,则在零点处将绘制另外的轴线- Default value:
- 真正
- 另请参见:
-
isHorizontalZeroLineVisible()
,setHorizontalZeroLineVisible(boolean)
-
getPlotChildren
protected ObservableList<Node> getPlotChildren()
情节中所有内容的可修改和可观察的列表。 这是XYChart的实现应该添加任何用于绘制绘图的节点。- 结果
- 可观察的情节儿童列表
-
updateLegend
protected void updateLegend()
每当添加或删除一个系列并且需要更新图例时,就会调用这一点
-
dataItemAdded
protected abstract void dataItemAdded(XYChart.Series<X,Y> series, int itemIndex, XYChart.Data<X,Y> item)
将数据项添加到系列时调用。 这是XYChart的实现可以创建/添加新节点,以使getPlotChildren表示此数据项。 如果animated = true,他们也可以将数据添加为淡入淡出或相似。- 参数
-
series
- 数据项被添加到的系列 -
itemIndex
- 系列中新项目的索引 -
item
- 添加的新数据项
-
dataItemRemoved
protected abstract void dataItemRemoved(XYChart.Data<X,Y> item, XYChart.Series<X,Y> series)
当数据项已从数据模型中删除但在图表上仍然可见时调用。 它仍然可见,以便您可以处理动画,以删除它在这种方法。 完成动画数据项后,您必须调用removeDataItemFromDisplay()来删除项目节点不显示在图表上。- 参数
-
item
- 从系列中删除的项目 -
series
- 该项目已被删除
-
dataItemChanged
protected abstract void dataItemChanged(XYChart.Data<X,Y> item)
数据项已更改时调用,即其xValue,yValue或extraValue已更改。- 参数
-
item
- 已更改的数据项
-
seriesAdded
protected abstract void seriesAdded(XYChart.Series<X,Y> series, int seriesIndex)
一系列已经添加到图表数据模型中。 这是XYChart的实现可以创建/添加新的节点来getPlotChildren来表示这个系列。 此外,您必须处理添加已经在系列中的任何数据项。 您可以简单地为每一个调用dataItemAdded(),或为要添加的整个系列提供一些不同的动画。- 参数
-
series
- 已添加的系列 -
seriesIndex
- 新系列的索引
-
seriesRemoved
protected abstract void seriesRemoved(XYChart.Series<X,Y> series)
数据模型中已经删除了一个系列,但它仍然可以在图表上显示。 它仍然可见,以便您可以处理动画,以删除它在这种方法。 完成动画数据项后,您必须调用removeSeriesFromDisplay()从显示列表中删除该系列。- 参数
-
series
- 已被删除的系列
-
seriesChanged
protected void seriesChanged(ListChangeListener.Change<? extends XYChart.Series> c)
当将每个原子更改作为此图表的系列列表时调用- 参数
-
c
- 表示系列更改的更改实例
-
updateAxisRange
protected void updateAxisRange()
当范围已经无效并且我们需要更新时,这被称为。 如果轴是自动测距,那么我们编译给定轴必须绘制的所有数据的列表,并在传递该数据的轴上调用invalidateRange()。
-
layoutPlotChildren
protected abstract void layoutPlotChildren()
被要求更新和布局情节儿童。 这应该包括更新表示轴和网格线顶部的图的节点的所有工作。原点是绘图区域的左上角,绘制区域可以通过获取x轴的宽度及其高度从y轴的高度。
-
layoutChartChildren
protected final void layoutChartChildren(double top, double left, double width, double height)
调用更新和布局从getChartChildren()- Specified by:
-
layoutChartChildren
在Chart
- 参数
-
top
- 从原点的顶部偏移量,以解释图表内容上的任何填充 -
left
- 从原点向左偏移以计算图表内容上的任何填充 -
width
- 布局图表的区域的宽度 -
height
- 布局图表的区域的高度
-
removeSeriesFromDisplay
protected final void removeSeriesFromDisplay(XYChart.Series<X,Y> series)
当您完成从图表中删除该系列的任何动画后,应从serialRemoved()中调用这个。 它将删除该系列不显示在getDisplayedSeriesIterator()返回的Iterator中。- 参数
-
series
- 要删除的系列
-
getDisplayedSeriesIterator
protected final Iterator<XYChart.Series<X,Y>> getDisplayedSeriesIterator()
XYChart维护当前显示的所有系列的列表,其中包括所有当前系列+最近被删除的系列,它们正在被褪色(动画)过程中。 这将创建并返回该列表的迭代器。 这是XYChart在绘制数据时应该使用的实现方式。- 结果
- 迭代器超过当前显示的系列
-
getCurrentDisplayedXValue
protected final X getCurrentDisplayedXValue(XYChart.Data<X,Y> item)
当前显示的数据值绘制在X轴上。 这可能与xValue或不同的相同。 XYChart使用它将xValue从旧值设为新值。 这是您应该在任何自定义XYChart实现中绘制的。 一些XYChart图表实现(如LineChart)也可以使用此功能在添加或删除数据时进行动画处理。- 参数
-
item
- 获取当前X轴数据值的XYChart.Data项目 - 结果
- 当前显示的X数据值
-
setCurrentDisplayedXValue
protected final void setCurrentDisplayedXValue(XYChart.Data<X,Y> item, X value)
设置在X轴上绘制的当前显示数据值。- 参数
-
item
- 获取当前X轴数据值的XYChart.Data项目。 -
value
- X轴数据值 - 另请参见:
-
getCurrentDisplayedXValue(javafx.scene.chart.XYChart.Data<X, Y>)
-
currentDisplayedXValueProperty
protected final ObjectProperty<X> currentDisplayedXValueProperty(XYChart.Data<X,Y> item)
在X轴上绘制的当前显示的数据值属性。- 参数
-
item
- 获取当前X轴数据值属性对象的XYChart.Data项。 - 结果
- 当前显示的X数据值ObjectProperty。
- 另请参见:
-
getCurrentDisplayedXValue(javafx.scene.chart.XYChart.Data<X, Y>)
-
getCurrentDisplayedYValue
protected final Y getCurrentDisplayedYValue(XYChart.Data<X,Y> item)
当前显示的数据值绘制在Y轴上。 这可能与yValue或不同的相同。 它由XYChart用于将yValue从旧值设为新值。 这是您应该在任何自定义XYChart实现中绘制的。 一些XYChart图表实现(如LineChart)也可以使用此功能在添加或删除数据时进行动画处理。- 参数
-
item
- 获取当前Y轴数据值的XYChart.Data项目 - 结果
- 当前显示的Y数据值
-
setCurrentDisplayedYValue
protected final void setCurrentDisplayedYValue(XYChart.Data<X,Y> item, Y value)
设置在Y轴上绘制的当前显示数据值。- 参数
-
item
- 获取当前Y轴数据值的XYChart.Data项目。 -
value
- Y轴数据值 - 另请参见:
-
getCurrentDisplayedYValue(javafx.scene.chart.XYChart.Data<X, Y>)
-
currentDisplayedYValueProperty
protected final ObjectProperty<Y> currentDisplayedYValueProperty(XYChart.Data<X,Y> item)
在Y轴上绘制的当前显示的数据值属性。- 参数
-
item
- 从中获取当前Y轴数据值属性对象的XYChart.Data项。 - 结果
- 当前显示的Y数据值为ObjectProperty。
- 另请参见:
-
getCurrentDisplayedYValue(javafx.scene.chart.XYChart.Data<X, Y>)
-
getCurrentDisplayedExtraValue
protected final Object getCurrentDisplayedExtraValue(XYChart.Data<X,Y> item)
当前显示的数据额外值。 这可能与extraValue或不同的相同。 它由XYChart用于将extraValue从旧值设为新值。 这是您应该在任何自定义XYChart实现中绘制的。- 参数
-
item
- 获取当前额外值的XYChart.Data项目 - 结果
- 当前的额外值
-
setCurrentDisplayedExtraValue
protected final void setCurrentDisplayedExtraValue(XYChart.Data<X,Y> item, Object value)
设置当前显示的数据额外值。- 参数
-
item
- 获取当前额外值的XYChart.Data项目。 -
value
- 额外的价值 - 另请参见:
-
getCurrentDisplayedExtraValue(javafx.scene.chart.XYChart.Data<X, Y>)
-
currentDisplayedExtraValueProperty
protected final ObjectProperty<Object> currentDisplayedExtraValueProperty(XYChart.Data<X,Y> item)
当前显示的额外值属性。- 参数
-
item
- 获取当前额外值属性对象的XYChart.Data项。 - 结果
- ObjectProperty <Object>当前额外的值ObjectProperty
- 另请参见:
-
getCurrentDisplayedExtraValue(javafx.scene.chart.XYChart.Data<X, Y>)
-
getDisplayedDataIterator
protected final Iterator<XYChart.Data<X,Y>> getDisplayedDataIterator(XYChart.Series<X,Y> series)
XYChart维护当前显示的所有项目的列表,其中包括所有当前数据+最近删除的正在淡出的数据项。 这将创建并返回该列表的迭代器。 这是XYChart在绘制数据时应该使用的实现方式。- 参数
-
series
- 获取显示数据的系列 - 结果
- 从本系列中显示当前显示的项目的迭代器
-
removeDataItemFromDisplay
protected final void removeDataItemFromDisplay(XYChart.Series<X,Y> series, XYChart.Data<X,Y> item)
当您完成从图表中删除该项目的任何动画后,应从dataItemRemoved()中调用此方法。 它将从getDisplayedDataIterator()返回的Iterator中删除数据项。- 参数
-
series
- 要删除的系列 -
item
- 要从系列显示列表中删除的项目
-
getClassCssMetaData
public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
- 结果
- 与此类相关联的CssMetaData可能包括其类的CssMetaData。
- 从以下版本开始:
- JavaFX 8.0
-
getCssMetaData
public List<CssMetaData<? extends Styleable,?>> getCssMetaData()
该方法应该委托给Node.getClassCssMetaData()
,以便可以访问Node的CssMetaData而不需要反射。- Specified by:
-
getCssMetaData
在接口Styleable
- 重写:
-
getCssMetaData
在Chart
- 结果
- 与该节点相关联的CssMetaData,其可以包括其超类的CssMetaData。
- 从以下版本开始:
- JavaFX 8.0
-
-