Klasse GraphicsBase<R extends Row<?,?,?>>
- Typparameter:
R- the type of the rows shown by the graphics
- Alle implementierten Schnittstellen:
Styleable, EventTarget, Skinnable
- Bekannte direkte Unterklassen:
ListViewGraphics, SingleRowGraphics, SplitPaneGraphics, VBoxGraphics
Rendering
The graphics view uses the canvas API of JavaFX. This is due to the complex nature of a Gantt chart and due to the large data volumes often observed in Gantt charts. Directly rendering large quantities of activities into a bitmap is much faster than constantly updating the scene graph and reapplying CSS styling. FlexGanttFX implements a pluggable renderer architecture where renderer instances can be mapped to activity types, very similar to the way Swing was doing it. The following code is an example of how to register a custom renderer for a given "Flight" activity type. Please note that the graphics view is capable of displaying activities in three different layouts, hence the layout type must also be passed to the method.
setActivityRenderer(Flight.class, GanttLayout.class, new FlightRenderer());
System Layers
Activities are not the only thing that need to be rendered. There are also the current time ("now"), grid lines, inner lines, agenda / chart lines, etc... All of these things are rendered by so-called system layers (seeSystemLayer). The graphics view manages two lists of these layers.
One list for background layers (getBackgroundSystemLayers()) and one
list for foreground layers (getForegroundSystemLayers()).
Background layers are drawn "behind" activities, foreground layers are drawn "in front of" activities. Each one of these lists are already pre-populated but can be changed by the application. For more information on the available system layers, please refer to their individual documentation.
System layers can be turned on and off directly via the API of
GraphicsBase. There is a boolean property for each layer that ships
with FlexGanttFX. The value of these properties can be set by calling the
methods that follow the pattern setShowXYZLayer. System layers
that are controlled like this will appear and disappear with a fade in / fade
out animation, while calling SystemLayer.setVisible(boolean) directly
will be without any animation.
Editing Customization
Two different callbacks are used to control the editing behaviour of activities. The first maps a mouse event / mouse location to anGraphicsBase.EditMode and can be registered by calling
setEditModeCallback(Class, Class, Callback). The second callback is
used to determine whether a given editing mode / operation can be applied to
an activity at all. This callback is registered by calling
setActivityEditingCallback(Class, Callback). Most applications will
only need to work with the second callback and keep the defaults for the edit
mode locations (for example: right edge used to change end time, left edge
used to change start time).
Notifications / Events
Events of typeActivityEvent are sent whenever the user performs a
change inside the graphics view. Applications that want to receive these
events can either call any one of the setOnActivityXYZEvent()
methods or by adding an event handler directly via
addEventHandler(ActionEvent.ACTIVITY_XYZ, ...). Events are fired
while the change is being performed and once it has been completed. For this
the ActivityEvent class lists event types with the two different
endings CHANGING and CHANGED.
Filtering
The data displayed by the graphics control can be filtered in two ways: first by showing / hiding rows, second by showing / hiding activities. Row filtering is done by the parent GanttChart controls while activity filtering is done by the graphics control via an activity filter predicate:
setActivityFilter(Predicate<Activity> filter);
Finding / Lookup / Hitpoint Detection
The graphics view provides support for finding out information about a given position. Activities can be found by callinggetActivityBoundsAt(double, double) or
getActivityRefAt(double, double). The time at an x-coordinate can be
looked up by calling getTimeAt(double). The opposite direction is
also available: a location can be found for a given time by calling
getLocation(Instant).
Context Menu
Context menus can be set on any control in JavaFX but due to the complexitiy of the graphics view it does make sense to provide additional built-in support. By callingsetContextMenuCallback(Callback) a context menu
specific callback can be registered with the graphics control. This callback
will be invoked when the user triggers the context menu. A callback parameter
object (see GraphicsBase.ContextMenuParameter) will be passed to the callback
already populated with the most important values that might be relevant for
building a context menu.- Seit:
- 1.0
-
Verschachtelte Klassen - Übersicht
Verschachtelte KlassenModifikator und TypKlasseBeschreibungstatic final classGraphicsBase.ContextMenuParameter<R extends Row<?,?, ?>> A callback parameter class used for displaying a context menu.static enumAn enumerator used to define how to visuzalize the dragged activity during a drag and drop operation.static classThe drag and drop info class aggregates the various pieces of information that the application might be interested in while a drag and drop operation is in progress.static final classA callback parameter object used for determining if the proposedGraphicsBase.EditModeis currently allowed or not.static enumAn enumeration of possible editing states that the graphics view can be in.static final classA callback parameter object used by the edit mode callback that provides information about the context for which the edit mode will be determined.static enumAn enumerator used to control the selection behaviour of the lasso.static final classGraphicsBase.RowControlsParameter<R extends Row<?,?, ?>> A callback parameter object used to provide context for the row controls factory.static enumAn enumerator used to define how many rows can show their row editors at the same time.static final classGraphicsBase.RowEditorParameter<R extends Row<?,?, ?>> A callback parameter object used to provide context for the row editor factory.static classGraphicsBase.RowHeader<R extends Row<?,?, ?>> A row header is a node that can be displayed to the left of each row inside the graphics area.static enumAn enumerator used to control the selection behaviour of the graphics view. -
Eigenschaftsübersicht
EigenschaftenTypEigenschaftBeschreibungfinal ObjectProperty<Color> The activityFill property.final ObjectProperty<Predicate<Activity>> A property used to store a filter function, which determines if an activity will be rendered or not.final ObjectProperty<Color> The activityHighlight property.final ObjectProperty<Color> The activityHover property.final ObjectProperty<Color> The activityPressed property.final ObjectProperty<Color> The activitySelected property.final ObjectProperty<Color> The activityStrokeHighlight property.final ObjectProperty<Color> The activityStrokeHover property.final ObjectProperty<Color> The activityStrokePressed property.final ObjectProperty<Color> The activityStroke property.final ObjectProperty<Color> The activityStrokeSelected property.final ObjectProperty<Color> The activityTextFillHighlight property.final ObjectProperty<Color> The activityTextFillHover property.final ObjectProperty<Color> The activityTextFillPressed property.final ObjectProperty<Color> The activityTextFill property.final ObjectProperty<Color> The activityTextFillSelected property.final BooleanPropertyThe animateRowEditor property.final BooleanPropertyA property used to enable / disable the autogrid mode.final BooleanPropertyControls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally).final ReadOnlyBooleanPropertyA property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes.final DoublePropertyA canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.A property used to store a callback which is used for creating a context menu.final BooleanPropertyA property used to enable / disable the debug mode.The dragAndDropFeedback property.A property used to store the current drag and drop information.final ObjectProperty<Callback<ActivityRef<?>, Image>> The dragImageProvider property.A property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished.final ReadOnlyObjectProperty<ActivityRef<?>> The editedActivity property.A property used to store the currently active editing mode, e.g.final BooleanPropertyControls whether the view allows the user to interactively resize the row / change the row height.final DoublePropertyThe fadeInOutVisibilityChangesDuration property.final BooleanPropertyThe fadeInOutVisibilityChanges property.final DoublePropertyA property used to store a fixed cell size for controls that are based on the virtual flow control.final ReadOnlyBooleanPropertyA convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.final StyleableObjectProperty<Paint> The gridLineColor1 property.final StyleableObjectProperty<Paint> The gridLineColor2 property.final StyleableObjectProperty<Paint> The gridLineColor3 property.final LongPropertyA property used to store the delay between two "blinks" of highlighted rows or activities.final ReadOnlyBooleanPropertyA read-only property used to control the highlighting effect.final BooleanPropertyDetermines whether the user can perform a horizontal drag with a mouse drag.final ReadOnlyObjectProperty<ActivityRef<?>> The hoverActivity property.final ReadOnlyObjectProperty<Layout> The hoverLayout property.final ReadOnlyObjectProperty<R> The hoverRow property.final StyleableObjectProperty<Paint> The innerLinesColor property.final ReadOnlyBooleanPropertyA boolean property used to indicate whether the lasso selection tool is currently in use or not.final BooleanPropertyA property used to control whether the user can use the lasso for selecting multiple activities at once.A property used to store the currently used lasso selection behaviour.final BooleanPropertyA boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.final IntegerPropertyA property used to store the number of grid levels that the user wants to see in the graphics view.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChange property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartHighValueChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartHighValueChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartHighValueChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartLowValueChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartLowValueChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartLowValueChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartValueChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartValueChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartValueChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDeleted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragDone property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityEndTimeChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityEndTimeChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityEndTimeChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityHorizontalDragFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityHorizontalDragOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityHorizontalDragStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityPercentageChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityPercentageChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityPercentageChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityStartTimeChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityStartTimeChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityStartTimeChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragDone property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragStarted property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelectionFinished property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelectionOngoing property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelection property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelectionStarted property.final ObjectProperty<Node> The placeholder property.final ReadOnlyObjectProperty<ActivityRef<?>> The pressedActivity property.The rowControlsFactory property.The rowEditingMode property.The rowEditorFactory property.final ObjectProperty<Predicate<R>> A predicate used to filter the rows.final ObjectProperty<Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>>> A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.final DoublePropertySpecifies the width of the so-called "row headers".final ListProperty<R> Returns the property used to store the list of rows.final BooleanPropertyReturns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).A property used to store the currently supported selection mode.final BooleanPropertyThe showAgendaLinesLayer property.final BooleanPropertyThe showCalendarLayer property.final BooleanPropertyThe showChartLinesLayer property.final BooleanPropertyThe showDSTLineLayer property.final BooleanPropertyThe showGridLineLayer property.final BooleanPropertyA property used to control wether a horizontal cursor line will be shown by the graphics view.final BooleanPropertyThe showHoverTimeIntervalLayer property.final BooleanPropertyThe showInnerLinesLayer property.final BooleanPropertyThe showLayoutLayer property.final BooleanPropertyControls whether theLinksCanvaswill be visible and links will be drawn.final BooleanPropertyA property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).final BooleanPropertyThe showNowLineLayer property.final BooleanPropertyDetermines if the row headers will be shown to the user or not.final BooleanPropertyThe showRowLayer property.final BooleanPropertyThe showSelectedTimeIntervalsLayer property.final BooleanPropertyA property used to control whether a vertical cursor line will be shown by the graphics view.final BooleanPropertyThe showZoneId property.final BooleanPropertyThe showZoomTimeIntervalLayer property.final ObjectProperty<Timeline> A property used to store a reference to the timeline control above the graphics.final StyleableObjectProperty<Paint> The timeNowColor property.final ObjectProperty<VirtualGrid<?>> The virtualGrid property.final StyleableObjectProperty<Paint> The weekendColor property.final StyleableDoublePropertyThe weekendOpacity property.Von Klasse geerbte Eigenschaften Control
contextMenu, skin, tooltipVon Klasse geerbte Eigenschaften Region
background, border, cacheShape, centerShape, height, insets, maxHeight, maxWidth, minHeight, minWidth, opaqueInsets, padding, prefHeight, prefWidth, scaleShape, shape, snapToPixel, widthVon Klasse geerbte Eigenschaften Parent
needsLayoutVon Klasse geerbte Eigenschaften 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 -
Feldübersicht
Von Klasse geerbte Felder Region
USE_COMPUTED_SIZE, USE_PREF_SIZEVon Klasse geerbte Felder Node
BASELINE_OFFSET_SAME_AS_HEIGHT -
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs a new graphics view and initializes the following: Virtual grid settings (1, 5, 10, 15, 30, 60 Minutes) Activity renderers for several of the default model classes. Edit mode callbacks for several of the default model classes. Activity editing callbacks. Background and foreground layers. Calendars (e. g. weekend calendar). -
Methodenübersicht
Modifikator und TypMethodeBeschreibungfinal ObjectProperty<Color> The activityFill property.final ObjectProperty<Predicate<Activity>> A property used to store a filter function, which determines if an activity will be rendered or not.final ObjectProperty<Color> The activityHighlight property.final ObjectProperty<Color> The activityHover property.final ObjectProperty<Color> The activityPressed property.final ObjectProperty<Color> The activitySelected property.final ObjectProperty<Color> The activityStrokeHighlight property.final ObjectProperty<Color> The activityStrokeHover property.final ObjectProperty<Color> The activityStrokePressed property.final ObjectProperty<Color> The activityStroke property.final ObjectProperty<Color> The activityStrokeSelected property.final ObjectProperty<Color> The activityTextFillHighlight property.final ObjectProperty<Color> The activityTextFillHover property.final ObjectProperty<Color> The activityTextFillPressed property.final ObjectProperty<Color> The activityTextFill property.final ObjectProperty<Color> The activityTextFillSelected property.final BooleanPropertyThe animateRowEditor property.final BooleanPropertyA property used to enable / disable the autogrid mode.final BooleanPropertyControls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally).final ReadOnlyBooleanPropertyA property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes.final DoublePropertyA canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.A property used to store a callback which is used for creating a context menu.final BooleanPropertyA property used to enable / disable the debug mode.The dragAndDropFeedback property.A property used to store the current drag and drop information.final ObjectProperty<Callback<ActivityRef<?>, Image>> The dragImageProvider property.voidPerforms a redraw of the displayed links and logs the given reason.A property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished.final ReadOnlyObjectProperty<ActivityRef<?>> The editedActivity property.A property used to store the currently active editing mode, e.g.final BooleanPropertyControls whether the view allows the user to interactively resize the row / change the row height.final DoublePropertyThe fadeInOutVisibilityChangesDuration property.final BooleanPropertyThe fadeInOutVisibilityChanges property.final DoublePropertyA property used to store a fixed cell size for controls that are based on the virtual flow control.final ActivityBoundsgetActivityBoundsAt(double x, double y) Finds the activity bounds at the given location.final <A extends Activity>
Callback<GraphicsBase.EditingCallbackParameter, Boolean> getActivityEditingCallback(Class<A> activityType) final ColorRuft den Wert deractivityFill-Eigenschaft ab.Returns the value ofactivityFilterProperty().final ColorRuft den Wert deractivityHighlight-Eigenschaft ab.final ColorRuft den Wert deractivityHover-Eigenschaft ab.final ColorRuft den Wert deractivityPressed-Eigenschaft ab.final ActivityRef<?> getActivityRefAt(double x, double y) Finds the activity reference at the given location.final <A extends Activity>
ActivityRenderer<? extends A> getActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType) Returns the renderer registered for the given activity and layout types.final ColorRuft den Wert deractivitySelected-Eigenschaft ab.final ColorRuft den Wert deractivityStroke-Eigenschaft ab.final ColorRuft den Wert deractivityStrokeHighlight-Eigenschaft ab.final ColorRuft den Wert deractivityStrokeHover-Eigenschaft ab.final ColorRuft den Wert deractivityStrokePressed-Eigenschaft ab.final ColorRuft den Wert deractivityStrokeSelected-Eigenschaft ab.final ColorRuft den Wert deractivityTextFill-Eigenschaft ab.final ColorRuft den Wert deractivityTextFillHighlight-Eigenschaft ab.final ColorRuft den Wert deractivityTextFillHover-Eigenschaft ab.final ColorRuft den Wert deractivityTextFillPressed-Eigenschaft ab.final ColorRuft den Wert deractivityTextFillSelected-Eigenschaft ab.final List<ActivityBounds> getAllActivityBoundsAt(double x, double y) Returns the bounds of all activities found at the given location.final List<ActivityRef<?>> getAllActivityRefsAt(double x, double y) Returns the references to all activities found at the given location.final List<ActivityRenderer<?>> Returns a list of all currently registered activity renderers.final List<CalendarActivity> getAllCalendarActivitiesAt(double x, double y) Finds all calendar activities at the given location.final <SL extends SystemLayer<R>>
SLgetBackgroundSystemLayer(Class<SL> layerType) final ObservableList<SystemLayer<R>> Returns the system layers rendered behind the activities.final ObservableList<Calendar<? extends CalendarActivity>> Returns the list of calendars that are registered with the graphics view.final doubleRuft den Wert dercanvasBuffer-Eigenschaft ab.static List<CssMetaData<? extends Styleable, ?>> Returns the CSS metadata supported by this control class.Returns the value ofcontextMenuCallbackProperty().final List<CssMetaData<? extends Styleable, ?>> Returns the CSS metadata supported by this control instance.Ruft den Wert derdragAndDropFeedback-Eigenschaft ab.Returns the value ofdragAndDropInfoProperty().final Callback<ActivityRef<?>, Image> Ruft den Wert derdragImageProvider-Eigenschaft ab.Returns the value ofdropLayerProviderProperty().final InstantCalculates and returns the earliest time used by all rows in the model.final ActivityRef<?> Ruft den Wert dereditedActivity-Eigenschaft ab.final GraphicsBase.EditModeReturns the value ofeditModeProperty().getEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType) Returns the edit mode callback registered for the given activity and layout types.final doubleRuft den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft ab.final doubleReturns the value offixedCellSizeProperty().final <SL extends SystemLayer<R>>
SLgetForegroundSystemLayer(Class<SL> layerType) final ObservableList<SystemLayer<R>> Returns the system layers rendered in front of the activities.final PaintRuft den Wert dergridLineColor1-Eigenschaft ab.final PaintRuft den Wert dergridLineColor2-Eigenschaft ab.final PaintRuft den Wert dergridLineColor3-Eigenschaft ab.final longReturns the value ofhighlightDelayProperty().final ObservableSet<ActivityRef<?>> Returns a set that is used to store the currently highighted activities.final ObservableSet<Row<?, ?, ?>> Returns a set that is used to store the currently highlighted rows.final ActivityRef<?> Ruft den Wert derhoverActivity-Eigenschaft ab.final LayoutRuft den Wert derhoverLayout-Eigenschaft ab.final RRuft den Wert derhoverRow-Eigenschaft ab.final PaintRuft den Wert derinnerLinesColor-Eigenschaft ab.Returns the value of thelassoSelectionBehaviourProperty().final InstantCalculates and returns the latest time used by all rows in the model.final ObservableList<Layer> Returns the list that is used to store all layers of the model.final LayoutgetLayoutAt(double y) Finds the layout that is being used at the given y-coordinate.final <AL extends ActivityLink<?>>
LinkRenderer<AL> getLinkRenderer(Class<AL> clazz) Returns a renderer for the given activity link type.final IntervalTree<ActivityLink> getLinks()Returns the interval tree that is used to store all activity links of the model.final LocalTimegetLocalTimeAt(double y) Returns the local time at the given location.final doublegetLocation(Instant time) Returns the x coordinate for the given time.final intReturns the value ofmaxGridLevelProperty().final EventHandler<ActivityEvent> Ruft den Wert deronActivityChange-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartHighValueChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartHighValueChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartLowValueChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartLowValueChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartValueChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartValueChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityChartValueChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDeleted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragDone-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityDragStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityEndTimeChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityEndTimeChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityEndTimeChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityHorizontalDragFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityHorizontalDragOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityHorizontalDragStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityPercentageChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityPercentageChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityPercentageChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityStartTimeChangeFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityStartTimeChangeOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityStartTimeChangeStarted-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragDone-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragFinished-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragOngoing-Eigenschaft ab.final EventHandler<ActivityEvent> Ruft den Wert deronActivityVerticalDragStarted-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelection-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelectionFinished-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelectionOngoing-Eigenschaft ab.final EventHandler<LassoEvent> Ruft den Wert deronLassoSelectionStarted-Eigenschaft ab.final NodeRuft den Wert derplaceholder-Eigenschaft ab.final ActivityRef<?> Ruft den Wert derpressedActivity-Eigenschaft ab.final RgetRowAt(double y) Finds the row at the given y-coordinate.final Callback<GraphicsBase.RowControlsParameter<R>, Node> Ruft den Wert derrowControlsFactory-Eigenschaft ab.getRowDragAndDropCallback(Class<? extends Row> rowType) Returns a callback that will be invoked when the user drags an activity over a row of the given type.Ruft den Wert derrowEditingMode-Eigenschaft ab.final Callback<GraphicsBase.RowEditorParameter<R>, Node> Ruft den Wert derrowEditorFactory-Eigenschaft ab.final PredicateReturns the value ofrowFilterProperty().final Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>> Returns the value ofrowHeaderFactoryProperty().final doubleRuft den Wert derrowHeadersWidth-Eigenschaft ab.final ObservableList<R> getRows()Returns the list that is used to store all rows of the model.final ObservableList<R> Returns the rows that are currently showing a row editor.final ObservableList<ActivityRef<?>> Returns the list of currently selected activities.Returns the value ofselectionModeProperty().final <SL extends SystemLayer<R>>
SLgetSystemLayer(Class<SL> layerType) final InstantgetTimeAt(double location) Returns the time at the given location.final TimelineReturns the value oftimelineProperty().final PaintRuft den Wert dertimeNowColor-Eigenschaft ab.Returns the user agent stylesheet used by this graphics control.final VirtualGrid<?> Ruft den Wert dervirtualGrid-Eigenschaft ab.final ObservableList<VirtualGrid<?>> Returns the available virtual grids.final PaintRuft den Wert derweekendColor-Eigenschaft ab.final doubleRuft den Wert derweekendOpacity-Eigenschaft ab.final ReadOnlyBooleanPropertyA convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.final StyleableObjectProperty<Paint> The gridLineColor1 property.final StyleableObjectProperty<Paint> The gridLineColor2 property.final StyleableObjectProperty<Paint> The gridLineColor3 property.final LongPropertyA property used to store the delay between two "blinks" of highlighted rows or activities.final ReadOnlyBooleanPropertyA read-only property used to control the highlighting effect.final BooleanPropertyDetermines whether the user can perform a horizontal drag with a mouse drag.final ReadOnlyObjectProperty<ActivityRef<?>> The hoverActivity property.final ReadOnlyObjectProperty<Layout> The hoverLayout property.final ReadOnlyObjectProperty<R> The hoverRow property.final StyleableObjectProperty<Paint> The innerLinesColor property.final booleanRuft den Wert deranimateRowEditor-Eigenschaft ab.final booleanReturns the value ofautoGridEnabledProperty().final booleanReturns the value ofautoMarkedTimeIntervalProperty().final booleanReturns the value ofautomaticRedrawProperty().booleanReturnstrueif the application is currently using a dark theme.final booleanReturns the value ofdebugModeProperty().final booleanRuft den Wert derenableRowResizing-Eigenschaft ab.final booleanRuft den Wert derfadeInOutVisibilityChanges-Eigenschaft ab.final booleanReturns the value ofgridEnabledProperty().final booleanReturns the value ofhighlightedProperty().final booleanReturns the value ofhorizontalDragEnabledProperty().final booleanReturns the value oflassoActiveProperty().final booleanReturns the value oflassoEnabledProperty().final booleanReturns the value oflassoSnapsToGridProperty().final booleanReturns the value ofsafeRenderingProperty().final booleanRuft den Wert dershowAgendaLinesLayer-Eigenschaft ab.final booleanRuft den Wert dershowCalendarLayer-Eigenschaft ab.final booleanRuft den Wert dershowChartLinesLayer-Eigenschaft ab.final booleanRuft den Wert dershowDSTLineLayer-Eigenschaft ab.final booleanRuft den Wert dershowGridLineLayer-Eigenschaft ab.final booleanReturns the value ofshowHorizontalCursorProperty().final booleanRuft den Wert dershowHoverTimeIntervalLayer-Eigenschaft ab.final booleanRuft den Wert dershowInnerLinesLayer-Eigenschaft ab.final booleanRuft den Wert dershowLayoutLayer-Eigenschaft ab.final booleanRuft den Wert dershowLinks-Eigenschaft ab.final booleanReturns the value ofshowMarkedTimeIntervalProperty().final booleanRuft den Wert dershowNowLineLayer-Eigenschaft ab.final booleanRuft den Wert dershowRowHeaders-Eigenschaft ab.final booleanRuft den Wert dershowRowLayer-Eigenschaft ab.final booleanRuft den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft ab.final booleanReturns the value ofshowVerticalCursorProperty().final booleanRuft den Wert dershowZoneId-Eigenschaft ab.final booleanRuft den Wert dershowZoomTimeIntervalLayer-Eigenschaft ab.final ReadOnlyBooleanPropertyA boolean property used to indicate whether the lasso selection tool is currently in use or not.final BooleanPropertyA property used to control whether the user can use the lasso for selecting multiple activities at once.A property used to store the currently used lasso selection behaviour.final BooleanPropertyA boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.final IntegerPropertyA property used to store the number of grid levels that the user wants to see in the graphics view.final voidmoveLayerBackward(Layer layer) Moves the given layer backward within the stack of layers.final voidmoveLayerForward(Layer layer) Moves the given layer forward within the stack of layers.final voidmoveLayerToBack(Layer layer) Moves the given layer to the back so that the activities located on it will be drawn first and all other activities on other layers will be drawn on top of them.final voidmoveLayerToFront(Layer layer) Moves the given layer to the front so that the activities located on it will be drawn on top of all other activities.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChange property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartHighValueChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartHighValueChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartHighValueChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartLowValueChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartLowValueChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartLowValueChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartValueChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartValueChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityChartValueChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDeleted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragDone property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityDragStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityEndTimeChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityEndTimeChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityEndTimeChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityHorizontalDragFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityHorizontalDragOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityHorizontalDragStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityPercentageChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityPercentageChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityPercentageChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityStartTimeChangeFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityStartTimeChangeOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityStartTimeChangeStarted property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragDone property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragFinished property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragOngoing property.final ObjectProperty<EventHandler<ActivityEvent>> The onActivityVerticalDragStarted property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelectionFinished property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelectionOngoing property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelection property.final ObjectProperty<EventHandler<LassoEvent>> The onLassoSelectionStarted property.final ObjectProperty<Node> The placeholder property.final ReadOnlyObjectProperty<ActivityRef<?>> The pressedActivity property.voidredraw()Performs a redraw of the displayed activities.voidPerforms a redraw of the displayed activities and logs the given reason.voidForces an immediate redraw of all rows.The rowControlsFactory property.The rowEditingMode property.The rowEditorFactory property.final ObjectProperty<Predicate<R>> A predicate used to filter the rows.final ObjectProperty<Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>>> A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.final DoublePropertySpecifies the width of the so-called "row headers".final ListProperty<R> Returns the property used to store the list of rows.final BooleanPropertyReturns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).A property used to store the currently supported selection mode.final voidsetActivityEditingCallback(Class<? extends MutableActivity> activityType, Callback<GraphicsBase.EditingCallbackParameter, Boolean> callback) Registers a callback used to determine if a given editing operation can be used for a given activity.final voidsetActivityFill(Color value) Legt den Wert deractivityFill-Eigenschaft fest.final voidsetActivityFilter(Predicate<Activity> filter) Sets the value ofactivityFilterProperty().final voidsetActivityHighlight(Color value) Legt den Wert deractivityHighlight-Eigenschaft fest.final voidsetActivityHover(Color value) Legt den Wert deractivityHover-Eigenschaft fest.final voidsetActivityPressed(Color value) Legt den Wert deractivityPressed-Eigenschaft fest.final <A extends Activity>
voidsetActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType, ActivityRenderer<? extends A> renderer) Registers a renderer for the given activity and layout type.final voidsetActivitySelected(Color value) Legt den Wert deractivitySelected-Eigenschaft fest.final voidsetActivityStroke(Color value) Legt den Wert deractivityStroke-Eigenschaft fest.final voidsetActivityStrokeHighlight(Color value) Legt den Wert deractivityStrokeHighlight-Eigenschaft fest.final voidsetActivityStrokeHover(Color value) Legt den Wert deractivityStrokeHover-Eigenschaft fest.final voidsetActivityStrokePressed(Color value) Legt den Wert deractivityStrokePressed-Eigenschaft fest.final voidsetActivityStrokeSelected(Color value) Legt den Wert deractivityStrokeSelected-Eigenschaft fest.final voidsetActivityTextFill(Color value) Legt den Wert deractivityTextFill-Eigenschaft fest.final voidLegt den Wert deractivityTextFillHighlight-Eigenschaft fest.final voidsetActivityTextFillHover(Color value) Legt den Wert deractivityTextFillHover-Eigenschaft fest.final voidsetActivityTextFillPressed(Color value) Legt den Wert deractivityTextFillPressed-Eigenschaft fest.final voidsetActivityTextFillSelected(Color value) Legt den Wert deractivityTextFillSelected-Eigenschaft fest.final voidsetAnimateRowEditor(boolean animate) Legt den Wert deranimateRowEditor-Eigenschaft fest.final voidsetAutoGridEnabled(boolean auto) Sets the value ofautoGridEnabledProperty().final voidsetAutoMarkedTimeInterval(boolean auto) Sets the value ofautoMarkedTimeIntervalProperty().final voidsetAutomaticRedraw(boolean automatic) Sets the value ofautomaticRedrawProperty().final voidsetCanvasBuffer(double canvasBuffer) Legt den Wert dercanvasBuffer-Eigenschaft fest.final voidSets the value ofcontextMenuCallbackProperty().final voidsetDebugMode(boolean debug) Sets the value ofdebugModeProperty().final voidLegt den Wert derdragAndDropFeedback-Eigenschaft fest.final voidsetDragImageProvider(Callback<ActivityRef<?>, Image> provider) Legt den Wert derdragImageProvider-Eigenschaft fest.final voidSets the value ofdropLayerProviderProperty().final voidsetEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType, Callback<GraphicsBase.EditModeCallbackParameter, GraphicsBase.EditMode> callback) final voidsetEnableRowResizing(boolean enableRowResizing) Legt den Wert derenableRowResizing-Eigenschaft fest.final voidsetFadeInOutVisibilityChanges(boolean show) Legt den Wert derfadeInOutVisibilityChanges-Eigenschaft fest.final voidsetFadeInOutVisibilityChangesDuration(double duration) Legt den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft fest.final voidsetFixedCellSize(double size) Sets the value offixedCellSizeProperty().voidsetGridLineColor1(Paint color) Legt den Wert dergridLineColor1-Eigenschaft fest.voidsetGridLineColor2(Paint color) Legt den Wert dergridLineColor2-Eigenschaft fest.voidsetGridLineColor3(Paint color) Legt den Wert dergridLineColor3-Eigenschaft fest.final voidsetHighlightDelay(long delay) Sets the value ofhighlightDelayProperty().final voidsetHorizontalDragEnabled(boolean enabled) Sets the value ofhorizontalDragEnabledProperty().voidsetInnerLinesColor(Paint color) Legt den Wert derinnerLinesColor-Eigenschaft fest.final voidsetLassoEnabled(boolean enabled) Sets the value oflassoEnabledProperty().final voidSets the value oflassoSelectionBehaviourProperty().final voidsetLassoSnapsToGrid(boolean snaps) Sets the value oflassoSnapsToGridProperty().final voidsetLinkRenderer(Class<? extends Activity> clazz, LinkRenderer<?> renderer) Sets a custom link renderer for the given type of activity link.final voidsetMaxGridLevel(int max) Sets the value ofmaxGridLevelProperty().final voidLegt den Wert deronActivityChange-Eigenschaft fest.final voidLegt den Wert deronActivityChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityChartHighValueChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChartHighValueChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityChartLowValueChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChartLowValueChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityChartValueChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityChartValueChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityChartValueChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityDeleted-Eigenschaft fest.final voidLegt den Wert deronActivityDragDone-Eigenschaft fest.final voidLegt den Wert deronActivityDragFinished-Eigenschaft fest.final voidLegt den Wert deronActivityDragOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityDragStarted-Eigenschaft fest.final voidLegt den Wert deronActivityEndTimeChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityEndTimeChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityEndTimeChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityHorizontalDragFinished-Eigenschaft fest.final voidLegt den Wert deronActivityHorizontalDragOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityHorizontalDragStarted-Eigenschaft fest.final voidLegt den Wert deronActivityPercentageChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityPercentageChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityPercentageChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityStartTimeChangeFinished-Eigenschaft fest.final voidLegt den Wert deronActivityStartTimeChangeOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityStartTimeChangeStarted-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragDone-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragFinished-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragOngoing-Eigenschaft fest.final voidLegt den Wert deronActivityVerticalDragStarted-Eigenschaft fest.final voidLegt den Wert deronLassoSelection-Eigenschaft fest.final voidLegt den Wert deronLassoSelectionFinished-Eigenschaft fest.final voidLegt den Wert deronLassoSelectionOngoing-Eigenschaft fest.final voidLegt den Wert deronLassoSelectionStarted-Eigenschaft fest.final voidsetPlaceholder(Node node) Legt den Wert derplaceholder-Eigenschaft fest.final voidLegt den Wert derrowControlsFactory-Eigenschaft fest.final voidsetRowDragAndDropCallback(Class<? extends Row> rowType, Callback<GraphicsBase.DragAndDropInfo, Boolean> callback) Specifies a callback that will be invoked when the user drags an activity over a row of the given type.final voidLegt den Wert derrowEditingMode-Eigenschaft fest.final voidsetRowEditorFactory(Callback<GraphicsBase.RowEditorParameter<R>, Node> factory) Legt den Wert derrowEditorFactory-Eigenschaft fest.final voidsetRowFilter(Predicate<R> predicate) Sets the value ofrowFilterProperty().final voidsetRowHeaderFactory(Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>> factory) Sets the value ofrowHeaderFactoryProperty().final voidsetRowHeadersWidth(double rowHeadersWidth) Legt den Wert derrowHeadersWidth-Eigenschaft fest.final voidsetRows(ObservableList<R> rows) Sets the value of therowsProperty().final voidsetSafeRendering(boolean safe) Sets the value ofsafeRenderingProperty().final voidSets the value ofselectionModeProperty().final voidsetShowAgendaLinesLayer(boolean show) Legt den Wert dershowAgendaLinesLayer-Eigenschaft fest.final voidsetShowCalendarLayer(boolean show) Legt den Wert dershowCalendarLayer-Eigenschaft fest.final voidsetShowChartLinesLayer(boolean show) Legt den Wert dershowChartLinesLayer-Eigenschaft fest.final voidsetShowDSTLineLayer(boolean show) Legt den Wert dershowDSTLineLayer-Eigenschaft fest.final voidsetShowGridLineLayer(boolean show) Legt den Wert dershowGridLineLayer-Eigenschaft fest.final voidsetShowHorizontalCursor(boolean show) Sets the value ofshowHorizontalCursorProperty().final voidsetShowHoverTimeIntervalLayer(boolean show) Legt den Wert dershowHoverTimeIntervalLayer-Eigenschaft fest.final voidsetShowInnerLinesLayer(boolean show) Legt den Wert dershowInnerLinesLayer-Eigenschaft fest.final voidsetShowLayoutLayer(boolean show) Legt den Wert dershowLayoutLayer-Eigenschaft fest.final voidsetShowLinks(boolean showLinks) Legt den Wert dershowLinks-Eigenschaft fest.final voidsetShowMarkedTimeInterval(boolean show) Sets the value ofshowMarkedTimeIntervalProperty().final voidsetShowNowLineLayer(boolean show) Legt den Wert dershowNowLineLayer-Eigenschaft fest.final voidsetShowRowHeaders(boolean showRowHeaders) Legt den Wert dershowRowHeaders-Eigenschaft fest.final voidsetShowRowLayer(boolean show) Legt den Wert dershowRowLayer-Eigenschaft fest.final voidsetShowSelectedTimeIntervalsLayer(boolean show) Legt den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft fest.final voidsetShowVerticalCursor(boolean show) Sets the value ofshowVerticalCursorProperty().final voidsetShowZoneId(boolean show) Legt den Wert dershowZoneId-Eigenschaft fest.final voidsetShowZoomTimeIntervalLayer(boolean show) Legt den Wert dershowZoomTimeIntervalLayer-Eigenschaft fest.final voidsetTimeline(Timeline timeline) Sets the value oftimelineProperty().voidsetTimeNowColor(Paint color) Legt den Wert dertimeNowColor-Eigenschaft fest.final voidsetVirtualGrid(VirtualGrid<?> grid) Legt den Wert dervirtualGrid-Eigenschaft fest.voidsetWeekendColor(Paint color) Legt den Wert derweekendColor-Eigenschaft fest.final voidsetWeekendOpacity(double opacity) Legt den Wert derweekendOpacity-Eigenschaft fest.final BooleanPropertyThe showAgendaLinesLayer property.final voidMakes theTimelineshow a time range starting with the earliest time used and ending with the latest time used by all currently loaded rows.final BooleanPropertyThe showCalendarLayer property.final BooleanPropertyThe showChartLinesLayer property.final BooleanPropertyThe showDSTLineLayer property.final voidMakes theTimelinestart with the earliest time used by the currently loaded rows.final BooleanPropertyThe showGridLineLayer property.final BooleanPropertyA property used to control wether a horizontal cursor line will be shown by the graphics view.final BooleanPropertyThe showHoverTimeIntervalLayer property.final BooleanPropertyThe showInnerLinesLayer property.final voidMakes theTimelineshow the latest time used by the currently loaded rows.final BooleanPropertyThe showLayoutLayer property.final BooleanPropertyControls whether theLinksCanvaswill be visible and links will be drawn.final BooleanPropertyA property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).final BooleanPropertyThe showNowLineLayer property.final BooleanPropertyDetermines if the row headers will be shown to the user or not.final BooleanPropertyThe showRowLayer property.final BooleanPropertyThe showSelectedTimeIntervalsLayer property.final BooleanPropertyA property used to control whether a vertical cursor line will be shown by the graphics view.final BooleanPropertyThe showZoneId property.final BooleanPropertyThe showZoomTimeIntervalLayer property.final voidstartRowEditing(R row) Starts row editing for the given row.final voidStops row editing for all rows.final voidstopRowEditing(R row) Stops row editing for the given row.final ObjectProperty<Timeline> A property used to store a reference to the timeline control above the graphics.final StyleableObjectProperty<Paint> The timeNowColor property.final ObjectProperty<VirtualGrid<?>> The virtualGrid property.final StyleableObjectProperty<Paint> The weekendColor property.final StyleableDoublePropertyThe weekendOpacity property.Von Klasse geerbte Methoden FlexGanttFXControl
getUserAgentStylesheetVon Klasse geerbte Methoden Control
computeMaxHeight, computeMaxWidth, computeMinHeight, computeMinWidth, computePrefHeight, computePrefWidth, contextMenuProperty, createDefaultSkin, executeAccessibleAction, getBaselineOffset, getContextMenu, getCssMetaData, getInitialFocusTraversable, getSkin, getTooltip, isResizable, layoutChildren, queryAccessibleAttribute, setContextMenu, setSkin, setTooltip, skinProperty, tooltipPropertyVon Klasse geerbte Methoden Region
backgroundProperty, borderProperty, cacheShapeProperty, centerShapeProperty, getBackground, getBorder, getHeight, getInsets, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getOpaqueInsets, getPadding, getPrefHeight, getPrefWidth, getShape, getWidth, heightProperty, insetsProperty, isCacheShape, isCenterShape, 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, widthPropertyVon Klasse geerbte Methoden Parent
getChildren, getChildrenUnmodifiable, getManagedChildren, getStylesheets, isNeedsLayout, layout, lookup, needsLayoutProperty, requestLayout, requestParentLayout, setNeedsLayout, updateBoundsVon Klasse geerbte Methoden 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, fireEvent, focusedProperty, focusTraversableProperty, getAccessibleHelp, getAccessibleRole, getAccessibleRoleDescription, getAccessibleText, getBlendMode, getBoundsInLocal, getBoundsInParent, getCacheHint, getClip, getContentBias, getCursor, getDepthTest, getEffect, getEffectiveNodeOrientation, getEventDispatcher, getId, getInitialCursor, 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, visiblePropertyVon Klasse geerbte Methoden Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitVon Schnittstelle geerbte Methoden Styleable
getStyleableNode
-
Eigenschaftsdetails
-
rowFilter
A predicate used to filter the rows.- Siehe auch:
-
activityFilter
A property used to store a filter function, which determines if an activity will be rendered or not. An activity will be drawn if the function returns "true".- Seit:
- 1.6
- Siehe auch:
-
lassoEnabled
A property used to control whether the user can use the lasso for selecting multiple activities at once.- Seit:
- 1.6
- Siehe auch:
-
automaticRedraw
A property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes. The default value is true. Applications can use this property to disable the redrawing when they know that they have to add a lot of activities but do not want the chart to perform a lot of redraws. The graphics will be redrawn right away when the value of this property changes from true to false or vice versa.- Seit:
- 1.5
- Siehe auch:
-
canvasBuffer
A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.- Siehe auch:
-
lassoActive
A boolean property used to indicate whether the lasso selection tool is currently in use or not.- Seit:
- 1.0
- Siehe auch:
-
lassoSnapsToGrid
A boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.- Seit:
- 1.1
- Siehe auch:
-
rows
Returns the property used to store the list of rows.- Seit:
- 1.6
- Siehe auch:
-
timeline
A property used to store a reference to the timeline control above the graphics.- Seit:
- 1.0
- Siehe auch:
-
fixedCellSize
A property used to store a fixed cell size for controls that are based on the virtual flow control. This value is not used by all subclasses of this class. Using a fixed cell size can result in a performance gain.- Seit:
- 1.0
- Siehe auch:
-
onActivityDeleted
The onActivityDeleted property. Stores the handler that is invoked when an activity has been deleted.- Siehe auch:
-
onActivityChange
The onActivityChange property. Stores the handler that is invoked for activity change events.- Siehe auch:
-
onActivityChangeStarted
The onActivityChangeStarted property. Stores the handler that is invoked when an activity change starts.- Siehe auch:
-
onActivityChangeOngoing
The onActivityChangeOngoing property. Stores the handler that is invoked while an activity change is ongoing.- Siehe auch:
-
onActivityChangeFinished
The onActivityChangeFinished property. Stores the handler that is invoked when an activity change has finished.- Siehe auch:
-
onActivityDragStarted
The onActivityDragStarted property. Stores the handler that is invoked when an activity drag starts.- Siehe auch:
-
onActivityDragOngoing
The onActivityDragOngoing property. Stores the handler that is invoked while an activity drag is ongoing.- Siehe auch:
-
onActivityDragFinished
The onActivityDragFinished property. Stores the handler that is invoked when an activity drag has finished.- Siehe auch:
-
onActivityDragDone
The onActivityDragDone property. Stores the handler that is invoked after an activity drag has been completed.- Siehe auch:
-
onActivityChartValueChangeStarted
The onActivityChartValueChangeStarted property. Stores the handler that is invoked when a chart value change starts.- Siehe auch:
-
onActivityChartValueChangeOngoing
The onActivityChartValueChangeOngoing property. Stores the handler that is invoked while a chart value change is ongoing.- Siehe auch:
-
onActivityChartValueChangeFinished
The onActivityChartValueChangeFinished property. Stores the handler that is invoked when a chart value change has finished.- Siehe auch:
-
onActivityChartHighValueChangeStarted
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeStartedPropertyThe onActivityChartHighValueChangeStarted property. Stores the handler that is invoked when a chart high value change starts.- Siehe auch:
-
onActivityChartHighValueChangeOngoing
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeOngoingPropertyThe onActivityChartHighValueChangeOngoing property. Stores the handler that is invoked while a chart high value change is ongoing.- Siehe auch:
-
onActivityChartHighValueChangeFinished
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeFinishedPropertyThe onActivityChartHighValueChangeFinished property. Stores the handler that is invoked when a chart high value change has finished.- Siehe auch:
-
onActivityChartLowValueChangeStarted
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeStartedPropertyThe onActivityChartLowValueChangeStarted property. Stores the handler that is invoked when a chart low value change starts.- Siehe auch:
-
onActivityChartLowValueChangeOngoing
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeOngoingPropertyThe onActivityChartLowValueChangeOngoing property. Stores the handler that is invoked while a chart low value change is ongoing.- Siehe auch:
-
onActivityChartLowValueChangeFinished
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeFinishedPropertyThe onActivityChartLowValueChangeFinished property. Stores the handler that is invoked when a chart low value change has finished.- Siehe auch:
-
onActivityHorizontalDragStarted
The onActivityHorizontalDragStarted property. Stores the handler that is invoked when a horizontal activity drag starts.- Siehe auch:
-
onActivityHorizontalDragOngoing
The onActivityHorizontalDragOngoing property. Stores the handler that is invoked while a horizontal activity drag is ongoing.- Siehe auch:
-
onActivityHorizontalDragFinished
The onActivityHorizontalDragFinished property. Stores the handler that is invoked when a horizontal activity drag has finished.- Siehe auch:
-
onActivityVerticalDragStarted
The onActivityVerticalDragStarted property. Stores the handler that is invoked when a vertical activity drag starts.- Siehe auch:
-
onActivityVerticalDragOngoing
The onActivityVerticalDragOngoing property. Stores the handler that is invoked while a vertical activity drag is ongoing.- Siehe auch:
-
onActivityVerticalDragFinished
The onActivityVerticalDragFinished property. Stores the handler that is invoked when a vertical activity drag has finished.- Siehe auch:
-
onActivityVerticalDragDone
The onActivityVerticalDragDone property. Stores the handler that is invoked after a vertical activity drag has been completed.- Siehe auch:
-
onActivityEndTimeChangeStarted
The onActivityEndTimeChangeStarted property. Stores the handler that is invoked when an activity end time change starts.- Siehe auch:
-
onActivityEndTimeChangeOngoing
The onActivityEndTimeChangeOngoing property. Stores the handler that is invoked while an activity end time change is ongoing.- Siehe auch:
-
onActivityEndTimeChangeFinished
The onActivityEndTimeChangeFinished property. Stores the handler that is invoked when an activity end time change has finished.- Siehe auch:
-
onActivityPercentageChangeStarted
The onActivityPercentageChangeStarted property. Stores the handler that is invoked when an activity percentage change starts.- Siehe auch:
-
onActivityPercentageChangeOngoing
The onActivityPercentageChangeOngoing property. Stores the handler that is invoked while an activity percentage change is ongoing.- Siehe auch:
-
onActivityPercentageChangeFinished
The onActivityPercentageChangeFinished property. Stores the handler that is invoked when an activity percentage change has finished.- Siehe auch:
-
onActivityStartTimeChangeStarted
The onActivityStartTimeChangeStarted property. Stores the handler that is invoked when an activity start time change starts.- Siehe auch:
-
onActivityStartTimeChangeOngoing
The onActivityStartTimeChangeOngoing property. Stores the handler that is invoked while an activity start time change is ongoing.- Siehe auch:
-
onActivityStartTimeChangeFinished
The onActivityStartTimeChangeFinished property. Stores the handler that is invoked when an activity start time change has finished.- Siehe auch:
-
onLassoSelection
The onLassoSelection property. Stores the handler that is invoked for lasso selection events.- Siehe auch:
-
onLassoSelectionStarted
The onLassoSelectionStarted property. Stores the handler that is invoked when a lasso selection starts.- Siehe auch:
-
onLassoSelectionOngoing
The onLassoSelectionOngoing property. Stores the handler that is invoked while a lasso selection is ongoing.- Siehe auch:
-
onLassoSelectionFinished
The onLassoSelectionFinished property. Stores the handler that is invoked when a lasso selection has finished.- Siehe auch:
-
editMode
A property used to store the currently active editing mode, e.g. "changing start time", "changing end time", "dragging horizontally", "dragging vertically", etc...
The property is read-only as it can not be set from the outside. It is being updated when the user moves the mouse cursor on top of an activity. The edit mode depends on the location of the cursor (left or right edge, center). SeesetActivityEditingCallback(Class, Callback)for mapping mouse events to editing operations.- Seit:
- 1.0
- Siehe auch:
-
highlightDelay
A property used to store the delay between two "blinks" of highlighted rows or activities.- Seit:
- 1.0
- Siehe auch:
-
highlighted
A read-only property used to control the highlighting effect. The value of this property gets frequently toggled between true and false so that is triggers a redraw of the graphics and a blink effect.- Seit:
- 1.0
- Siehe auch:
-
contextMenuCallback
public final ObjectProperty<Callback<GraphicsBase.ContextMenuParameter<R extends Row<?,?, contextMenuCallbackProperty?>>, ContextMenu>> A property used to store a callback which is used for creating a context menu. Context menus can also be used by simply callingControl.setContextMenu(ContextMenu)but using this callback saves you from collecting all the information and objects that can be found at the location of the context menu trigger event.- Seit:
- 1.0
- Siehe auch:
-
autoMarkedTimeInterval
Controls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally). The default is "true".- Siehe auch:
-
maxGridLevel
A property used to store the number of grid levels that the user wants to see in the graphics view. The value of this property must be between 1 and 5. The grid level depends on the number of scales shown by the dateline (seeDateline.getScaleResolutions()). If the dateline is currently showing two scales (e.g. days and weeks) then the graphics view and theGridLinesLayercan also display two different grid lines, for example a light gray one for days and a dark gray one for weeks.- Seit:
- 1.0
- Siehe auch:
-
showVerticalCursor
A property used to control whether a vertical cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Seit:
- 1.0
- Siehe auch:
-
showHorizontalCursor
A property used to control wether a horizontal cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Seit:
- 1.0
- Siehe auch:
-
showMarkedTimeInterval
A property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).- Seit:
- 1.1
- Siehe auch:
-
debugMode
A property used to enable / disable the debug mode. The debug mode will cause the object bounds of activities to be rendered in the graphics view and also the bounds of the lasso selection tool. Other information might get added in the future.- Seit:
- 1.0
- Siehe auch:
-
autoGridEnabled
A property used to enable / disable the autogrid mode. The autogrid mode will cause activities to snap to times based on the currently shown granularity of the dateline. If the dateline is showing "days" then the activities will snap to the beginning and / or end of a day. If the dateline is showing hours then the activities will snap to full hours.- Seit:
- 1.1
- Siehe auch:
-
gridEnabled
A convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.- Seit:
- 1.2
- Siehe auch:
-
selectionMode
A property used to store the currently supported selection mode. The graphics view supports single, multiple, and none.- Seit:
- 1.0
- Siehe auch:
-
lassoSelectionBehaviour
A property used to store the currently used lasso selection behaviour. This value of this property controls when an activity is actually considered selected by the lasso: does it need to be completely inside the lasso bounds or is it enough when it gets touched by the lasso?- Seit:
- 1.0
- Siehe auch:
-
hoverActivity
The hoverActivity property. Stores the activity currently under the mouse pointer.- Siehe auch:
-
hoverRow
The hoverRow property. Stores the row currently under the mouse pointer.- Siehe auch:
-
hoverLayout
The hoverLayout property. Stores the layout currently under the mouse pointer.- Siehe auch:
-
editedActivity
The editedActivity property. Stores the activity that is currently being edited.- Siehe auch:
-
pressedActivity
The pressedActivity property. Stores the activity that is currently pressed.- Siehe auch:
-
virtualGrid
The virtualGrid property. Stores the virtual grid currently used by the graphics view.- Siehe auch:
-
placeholder
The placeholder property. Stores the placeholder node shown when the graphics view has no content to display.- Siehe auch:
-
dragAndDropInfo
A property used to store the current drag and drop information. This object stores data relevant to the current drag and drop operation.- Seit:
- 1.0
- Siehe auch:
-
dragImageProvider
The dragImageProvider property. Stores the callback used to create drag images for activity drag and drop operations.- Siehe auch:
-
showAgendaLinesLayer
The showAgendaLinesLayer property. Controls whether the agenda lines layer is shown.- Siehe auch:
-
showCalendarLayer
The showCalendarLayer property. Controls whether the calendar layer is shown.- Siehe auch:
-
showLayoutLayer
The showLayoutLayer property. Controls whether the layout layer is shown.- Siehe auch:
-
showChartLinesLayer
The showChartLinesLayer property. Controls whether the chart lines layer is shown.- Siehe auch:
-
showGridLineLayer
The showGridLineLayer property. Controls whether the grid lines layer is shown.- Siehe auch:
-
showHoverTimeIntervalLayer
The showHoverTimeIntervalLayer property. Controls whether the hover time interval layer is shown.- Siehe auch:
-
showInnerLinesLayer
The showInnerLinesLayer property. Controls whether the inner lines layer is shown.- Siehe auch:
-
showNowLineLayer
The showNowLineLayer property. Controls whether the now line layer is shown.- Siehe auch:
-
showDSTLineLayer
The showDSTLineLayer property. Controls whether the daylight saving time line layer is shown.- Siehe auch:
-
showRowLayer
The showRowLayer property. Controls whether the row layer is shown.- Siehe auch:
-
showSelectedTimeIntervalsLayer
The showSelectedTimeIntervalsLayer property. Controls whether the selected time intervals layer is shown.- Siehe auch:
-
showZoomTimeIntervalLayer
The showZoomTimeIntervalLayer property. Controls whether the zoom time interval layer is shown.- Siehe auch:
-
showZoneId
The showZoneId property. Controls whether row time zone identifiers are shown.- Siehe auch:
-
fadeInOutVisibilityChanges
The fadeInOutVisibilityChanges property. Controls whether visibility changes are animated with fade transitions.- Siehe auch:
-
fadeInOutVisibilityChangesDuration
The fadeInOutVisibilityChangesDuration property. Controls the duration of fade transitions used for visibility changes.- Siehe auch:
-
showLinks
Controls whether theLinksCanvaswill be visible and links will be drawn.- Siehe auch:
-
dragAndDropFeedback
The dragAndDropFeedback property. Controls how drag and drop feedback is rendered.- Siehe auch:
-
rowControlsFactory
public final ObjectProperty<Callback<GraphicsBase.RowControlsParameter<R extends Row<?,?, rowControlsFactoryProperty?>>, Node>> The rowControlsFactory property. Stores the factory used to create row control nodes.- Siehe auch:
-
enableRowResizing
Controls whether the view allows the user to interactively resize the row / change the row height.- Seit:
- 11.12.0
- Siehe auch:
-
rowHeaderFactory
public final ObjectProperty<Callback<GraphicsBase<R extends Row<?,?, rowHeaderFactoryProperty?>>, GraphicsBase.RowHeader<R extends Row<?, ?, ?>>>> A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.- Seit:
- 11.11.0
- Siehe auch:
-
showRowHeaders
Determines if the row headers will be shown to the user or not.- Seit:
- 11.11.0
- Siehe auch:
-
rowHeadersWidth
Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.- Seit:
- 11.11.0
- Siehe auch:
-
rowEditorFactory
public final ObjectProperty<Callback<GraphicsBase.RowEditorParameter<R extends Row<?,?, rowEditorFactoryProperty?>>, Node>> The rowEditorFactory property. Stores the factory used to create row editor nodes.- Siehe auch:
-
rowEditingMode
The rowEditingMode property. Controls how many row editors can be shown at the same time.- Siehe auch:
-
animateRowEditor
The animateRowEditor property. Controls whether row editors are shown and hidden with animation.- Siehe auch:
-
dropLayerProvider
public final ObjectProperty<Callback<GraphicsBase.DragAndDropInfo, Layer>> dropLayerProviderPropertyA property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished. The default provider returns the layer on which the activity is currently shown.- Seit:
- 1.2
- Siehe auch:
-
horizontalDragEnabled
Determines whether the user can perform a horizontal drag with a mouse drag.- Seit:
- 1.3
- Siehe auch:
-
safeRendering
Returns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).Using save / restore will ensure that the pluggable system layers and activity renderers will not have any side effects on each other. Setting this property to true has an impact on performance. The default value of this property is false.
Example
The following code shows how the property is used within the framework.GraphicsContext gc = canvas.getGraphicsContext2D(); if (graphics.isSafeRendering()) { gc.save(); } gc.setTransform(...); gc.strokeLine(...); if (graphics.isSafeRendering()) { gc.restore(); }- Siehe auch:
-
gridLineColor1
The gridLineColor1 property. Stores the paint used for first-level grid lines.- Siehe auch:
-
gridLineColor2
The gridLineColor2 property. Stores the paint used for second-level grid lines.- Siehe auch:
-
gridLineColor3
The gridLineColor3 property. Stores the paint used for third-level grid lines.- Siehe auch:
-
weekendColor
The weekendColor property. Stores the paint used to render weekend background areas.- Siehe auch:
-
weekendOpacity
The weekendOpacity property. Controls the opacity used when rendering weekend background areas.- Siehe auch:
-
timeNowColor
The timeNowColor property. Stores the paint used to render the current time indicator.- Siehe auch:
-
innerLinesColor
The innerLinesColor property. Stores the paint used to render inner row lines.- Siehe auch:
-
activityFill
The activityFill property. Stores the fill color used to render activities in their normal state.- Siehe auch:
-
activityStroke
The activityStroke property. Stores the stroke color used to render activities in their normal state.- Siehe auch:
-
activityPressed
The activityPressed property. Stores the fill color used to render pressed activities.- Siehe auch:
-
activityHighlight
The activityHighlight property. Stores the fill color used to render highlighted activities.- Siehe auch:
-
activitySelected
The activitySelected property. Stores the fill color used to render selected activities.- Siehe auch:
-
activityHover
The activityHover property. Stores the fill color used to render hovered activities.- Siehe auch:
-
activityStrokePressed
The activityStrokePressed property. Stores the stroke color used to render pressed activities.- Siehe auch:
-
activityStrokeHighlight
The activityStrokeHighlight property. Stores the stroke color used to render highlighted activities.- Siehe auch:
-
activityStrokeSelected
The activityStrokeSelected property. Stores the stroke color used to render selected activities.- Siehe auch:
-
activityStrokeHover
The activityStrokeHover property. Stores the stroke color used to render hovered activities.- Siehe auch:
-
activityTextFill
The activityTextFill property. Stores the text fill used to render activities in their normal state.- Siehe auch:
-
activityTextFillHover
The activityTextFillHover property. Stores the text fill used to render hovered activities.- Siehe auch:
-
activityTextFillHighlight
The activityTextFillHighlight property. Stores the text fill used to render highlighted activities.- Siehe auch:
-
activityTextFillPressed
The activityTextFillPressed property. Stores the text fill used to render pressed activities.- Siehe auch:
-
activityTextFillSelected
The activityTextFillSelected property. Stores the text fill used to render selected activities.- Siehe auch:
-
-
Konstruktordetails
-
GraphicsBase
public GraphicsBase()Constructs a new graphics view and initializes the following:- Virtual grid settings (1, 5, 10, 15, 30, 60 Minutes)
- Activity renderers for several of the default model classes.
- Edit mode callbacks for several of the default model classes.
- Activity editing callbacks.
- Background and foreground layers.
- Calendars (e. g. weekend calendar).
- Seit:
- 1.0
-
-
Methodendetails
-
getUserAgentStylesheet
Returns the user agent stylesheet used by this graphics control.- Setzt außer Kraft:
getUserAgentStylesheetin KlasseRegion- Gibt zurück:
- the user agent stylesheet
-
rowFilterProperty
A predicate used to filter the rows.- Gibt zurück:
- the filter predicate
- Siehe auch:
-
setRowFilter
Sets the value ofrowFilterProperty().- Parameter:
predicate- the filter predicate
-
getRowFilter
Returns the value ofrowFilterProperty().- Gibt zurück:
- the filter predicate
-
activityFilterProperty
A property used to store a filter function, which determines if an activity will be rendered or not. An activity will be drawn if the function returns "true".- Gibt zurück:
- the predicate / the filter function for activities
- Seit:
- 1.6
- Siehe auch:
-
getActivityFilter
Returns the value ofactivityFilterProperty().- Gibt zurück:
- the predicate / the filter function for activities
- Seit:
- 1.6
-
setActivityFilter
Sets the value ofactivityFilterProperty().- Parameter:
filter- the filter function- Seit:
- 1.6
-
lassoEnabledProperty
A property used to control whether the user can use the lasso for selecting multiple activities at once.- Gibt zurück:
- the lasso enabled property
- Seit:
- 1.6
- Siehe auch:
-
setLassoEnabled
public final void setLassoEnabled(boolean enabled) Sets the value oflassoEnabledProperty().- Parameter:
enabled- if true, the lasso will be usable by the user- Seit:
- 1.6
-
isLassoEnabled
public final boolean isLassoEnabled()Returns the value oflassoEnabledProperty().- Gibt zurück:
- true if the user can use the lasso
- Seit:
- 1.6
-
automaticRedrawProperty
A property used to determine if the graphics will be redrawn whenever the data in any of the activity repository changes. The default value is true. Applications can use this property to disable the redrawing when they know that they have to add a lot of activities but do not want the chart to perform a lot of redraws. The graphics will be redrawn right away when the value of this property changes from true to false or vice versa.- Gibt zurück:
- the automatic redraw property
- Seit:
- 1.5
- Siehe auch:
-
isAutomaticRedraw
public final boolean isAutomaticRedraw()Returns the value ofautomaticRedrawProperty().- Gibt zurück:
- true if automatic redrawing will be performed (default)
- Seit:
- 1.5
-
setAutomaticRedraw
public final void setAutomaticRedraw(boolean automatic) Sets the value ofautomaticRedrawProperty().- Parameter:
automatic- if true, then the graphics redraw after every repository change event- Seit:
- 1.5
-
getCanvasBuffer
public final double getCanvasBuffer()Ruft den Wert dercanvasBuffer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.
- Gibt zurück:
- Wert der Eigenschaft
canvasBuffer - Siehe auch:
-
canvasBufferProperty
A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.- Gibt zurück:
- the canvas buffer size (default is 250 pixel)
- Siehe auch:
-
setCanvasBuffer
public final void setCanvasBuffer(double canvasBuffer) Legt den Wert dercanvasBuffer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- A canvas buffer size that is larger than zero increases the rendering performance of the Gantt chart substantially as fewer repaints of each row's canvas are needed.
- Parameter:
canvasBuffer- Wert für die EigenschaftcanvasBuffer- Siehe auch:
-
lassoActiveProperty
A boolean property used to indicate whether the lasso selection tool is currently in use or not.- Gibt zurück:
- true if the user is currently performing a lasso selection operation
- Seit:
- 1.0
- Siehe auch:
-
isLassoActive
public final boolean isLassoActive()Returns the value oflassoActiveProperty().- Gibt zurück:
- true if the user is currently performing a lasso selection operation.
- Seit:
- 1.0
-
lassoSnapsToGridProperty
A boolean property used to indicate whether the lasso selection tool is using the currently active grid settings.- Gibt zurück:
- the lasso snaps property
- Seit:
- 1.1
- Siehe auch:
-
isLassoSnapsToGrid
public final boolean isLassoSnapsToGrid()Returns the value oflassoSnapsToGridProperty().- Gibt zurück:
- true if the lasso is obeying the current virtual grid settings
- Seit:
- 1.1
-
setLassoSnapsToGrid
public final void setLassoSnapsToGrid(boolean snaps) Sets the value oflassoSnapsToGridProperty().- Parameter:
snaps- if true, the lasso will obey the grid- Seit:
- 1.1
-
getLinks
Returns the interval tree that is used to store all activity links of the model.- Gibt zurück:
- a list of activity links
- Seit:
- 1.0
-
getLayers
Returns the list that is used to store all layers of the model.- Gibt zurück:
- a list of layers
- Seit:
- 1.0
-
rowsProperty
Returns the property used to store the list of rows.- Gibt zurück:
- the list of rows
- Seit:
- 1.6
- Siehe auch:
-
setRows
Sets the value of therowsProperty().- Parameter:
rows- the new rows to display- Seit:
- 1.6
-
getRows
Returns the list that is used to store all rows of the model.- Gibt zurück:
- a list of rows
- Seit:
- 1.6
-
timelineProperty
A property used to store a reference to the timeline control above the graphics.- Gibt zurück:
- the property used to store the timeline reference
- Seit:
- 1.0
- Siehe auch:
-
setTimeline
Sets the value oftimelineProperty().- Parameter:
timeline- the timeline control above the graphics- Seit:
- 1.0
-
getTimeline
Returns the value oftimelineProperty().- Gibt zurück:
- the timeline control above the graphics
- Seit:
- 1.0
-
fixedCellSizeProperty
A property used to store a fixed cell size for controls that are based on the virtual flow control. This value is not used by all subclasses of this class. Using a fixed cell size can result in a performance gain.- Gibt zurück:
- the property used to store a fixed cell size
- Seit:
- 1.0
- Siehe auch:
-
getFixedCellSize
public final double getFixedCellSize()Returns the value offixedCellSizeProperty().- Gibt zurück:
- the fixed cell size (default is -1)
- Seit:
- 1.0
-
setFixedCellSize
public final void setFixedCellSize(double size) Sets the value offixedCellSizeProperty().- Parameter:
size- the fixed cell size, -1 to disable fixed cell size- Seit:
- 1.0
-
getLocation
Returns the x coordinate for the given time.- Parameter:
time- the time for which to look up a coordinate- Gibt zurück:
- the x coordinate for the given time
- Seit:
- 1.0
- Siehe auch:
-
getTimeAt
Returns the time at the given location.- Parameter:
location- the x-coordinate for which to retrieve the time- Gibt zurück:
- the time at the given location
- Seit:
- 1.0
-
getLocalTimeAt
Returns the local time at the given location. This method will only return a valid value if theAgendaLayoutis being used at the given location (in graphics view coordinate space).- Parameter:
y- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the local time at the given location or null if location not
managed by an
AgendaLayout - Seit:
- 1.0
-
getRowAt
Finds the row at the given y-coordinate.- Parameter:
y- the y-coordinate in the coordinate space of the graphics view for which to return a row model object- Gibt zurück:
- the row model object at the given y-coordinate
- Seit:
- 1.0
-
getLayoutAt
Finds the layout that is being used at the given y-coordinate.- Parameter:
y- the y-coordinate in the coordinate space of the graphics view for which to return the layout- Gibt zurück:
- the layout used at the given location
- Seit:
- 1.0
-
getActivityBoundsAt
Finds the activity bounds at the given location. Returns the bounds of the activity drawn last if several activities can be found at the given location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the bounds of the activity found at the given location or null if no activity can be found
- Seit:
- 1.0
-
getActivityRefAt
Finds the activity reference at the given location. Returns the reference of the activity drawn last if several activities can be found at the given location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the reference of the activity found at the given location or null if no activity can be found
- Seit:
- 1.0
-
getAllActivityBoundsAt
Returns the bounds of all activities found at the given location. Activities can be drawn on top of each other, hence several bounds can exist at the same location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the bounds of the activities found at the given location or null if no activities can be found
- Seit:
- 1.0
-
getAllActivityRefsAt
Returns the references to all activities found at the given location. Activities can be drawn on top of each other, hence several references can exist at the same location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- the references of all activities found at the given location or null if no activities can be found
- Seit:
- 1.0
-
getAllCalendarActivitiesAt
Finds all calendar activities at the given location.- Parameter:
x- the x-coordinate in the coordinate space of the graphics viewy- the y-coordinate in the coordinate space of the graphics view- Gibt zurück:
- all calendar activities at the given location
- Seit:
- 1.1
-
moveLayerToFront
Moves the given layer to the front so that the activities located on it will be drawn on top of all other activities.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
moveLayerToBack
Moves the given layer to the back so that the activities located on it will be drawn first and all other activities on other layers will be drawn on top of them.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
moveLayerForward
Moves the given layer forward within the stack of layers.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
moveLayerBackward
Moves the given layer backward within the stack of layers.- Parameter:
layer- the layer to move- Seit:
- 1.0
- Siehe auch:
-
onActivityDeletedProperty
The onActivityDeleted property. Stores the handler that is invoked when an activity has been deleted.- Gibt zurück:
- the onActivityDeleted property
- Siehe auch:
-
setOnActivityDeleted
Legt den Wert deronActivityDeleted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityDeleted property. Stores the handler that is invoked when an activity has been deleted.
- Parameter:
value- Wert für die EigenschaftonActivityDeleted- Siehe auch:
-
getOnActivityDeleted
Ruft den Wert deronActivityDeleted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityDeleted property. Stores the handler that is invoked when an activity has been deleted.
- Gibt zurück:
- Wert der Eigenschaft
onActivityDeleted - Siehe auch:
-
onActivityChangeProperty
The onActivityChange property. Stores the handler that is invoked for activity change events.- Gibt zurück:
- the onActivityChange property
- Siehe auch:
-
setOnActivityChange
Legt den Wert deronActivityChange-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChange property. Stores the handler that is invoked for activity change events.
- Parameter:
value- Wert für die EigenschaftonActivityChange- Siehe auch:
-
getOnActivityChange
Ruft den Wert deronActivityChange-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChange property. Stores the handler that is invoked for activity change events.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChange - Siehe auch:
-
onActivityChangeStartedProperty
The onActivityChangeStarted property. Stores the handler that is invoked when an activity change starts.- Gibt zurück:
- the onActivityChangeStarted property
- Siehe auch:
-
setOnActivityChangeStarted
Legt den Wert deronActivityChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChangeStarted property. Stores the handler that is invoked when an activity change starts.
- Parameter:
value- Wert für die EigenschaftonActivityChangeStarted- Siehe auch:
-
getOnActivityChangeStarted
Ruft den Wert deronActivityChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChangeStarted property. Stores the handler that is invoked when an activity change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChangeStarted - Siehe auch:
-
onActivityChangeOngoingProperty
The onActivityChangeOngoing property. Stores the handler that is invoked while an activity change is ongoing.- Gibt zurück:
- the onActivityChangeOngoing property
- Siehe auch:
-
setOnActivityChangeOngoing
Legt den Wert deronActivityChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChangeOngoing property. Stores the handler that is invoked while an activity change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityChangeOngoing- Siehe auch:
-
getOnActivityChangeOngoing
Ruft den Wert deronActivityChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChangeOngoing property. Stores the handler that is invoked while an activity change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChangeOngoing - Siehe auch:
-
onActivityChangeFinishedProperty
The onActivityChangeFinished property. Stores the handler that is invoked when an activity change has finished.- Gibt zurück:
- the onActivityChangeFinished property
- Siehe auch:
-
setOnActivityChangeFinished
Legt den Wert deronActivityChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChangeFinished property. Stores the handler that is invoked when an activity change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityChangeFinished- Siehe auch:
-
getOnActivityChangeFinished
Ruft den Wert deronActivityChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChangeFinished property. Stores the handler that is invoked when an activity change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChangeFinished - Siehe auch:
-
onActivityDragStartedProperty
The onActivityDragStarted property. Stores the handler that is invoked when an activity drag starts.- Gibt zurück:
- the onActivityDragStarted property
- Siehe auch:
-
setOnActivityDragStarted
Legt den Wert deronActivityDragStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityDragStarted property. Stores the handler that is invoked when an activity drag starts.
- Parameter:
value- Wert für die EigenschaftonActivityDragStarted- Siehe auch:
-
getOnActivityDragStarted
Ruft den Wert deronActivityDragStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityDragStarted property. Stores the handler that is invoked when an activity drag starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragStarted - Siehe auch:
-
onActivityDragOngoingProperty
The onActivityDragOngoing property. Stores the handler that is invoked while an activity drag is ongoing.- Gibt zurück:
- the onActivityDragOngoing property
- Siehe auch:
-
setOnActivityDragOngoing
Legt den Wert deronActivityDragOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityDragOngoing property. Stores the handler that is invoked while an activity drag is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityDragOngoing- Siehe auch:
-
getOnActivityDragOngoing
Ruft den Wert deronActivityDragOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityDragOngoing property. Stores the handler that is invoked while an activity drag is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragOngoing - Siehe auch:
-
onActivityDragFinishedProperty
The onActivityDragFinished property. Stores the handler that is invoked when an activity drag has finished.- Gibt zurück:
- the onActivityDragFinished property
- Siehe auch:
-
setOnActivityDragFinished
Legt den Wert deronActivityDragFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityDragFinished property. Stores the handler that is invoked when an activity drag has finished.
- Parameter:
value- Wert für die EigenschaftonActivityDragFinished- Siehe auch:
-
getOnActivityDragFinished
Ruft den Wert deronActivityDragFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityDragFinished property. Stores the handler that is invoked when an activity drag has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragFinished - Siehe auch:
-
onActivityDragDoneProperty
The onActivityDragDone property. Stores the handler that is invoked after an activity drag has been completed.- Gibt zurück:
- the onActivityDragDone property
- Siehe auch:
-
setOnActivityDragDone
Legt den Wert deronActivityDragDone-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityDragDone property. Stores the handler that is invoked after an activity drag has been completed.
- Parameter:
value- Wert für die EigenschaftonActivityDragDone- Siehe auch:
-
getOnActivityDragDone
Ruft den Wert deronActivityDragDone-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityDragDone property. Stores the handler that is invoked after an activity drag has been completed.
- Gibt zurück:
- Wert der Eigenschaft
onActivityDragDone - Siehe auch:
-
onActivityChartValueChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartValueChangeStartedProperty()The onActivityChartValueChangeStarted property. Stores the handler that is invoked when a chart value change starts.- Gibt zurück:
- the onActivityChartValueChangeStarted property
- Siehe auch:
-
setOnActivityChartValueChangeStarted
Legt den Wert deronActivityChartValueChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartValueChangeStarted property. Stores the handler that is invoked when a chart value change starts.
- Parameter:
value- Wert für die EigenschaftonActivityChartValueChangeStarted- Siehe auch:
-
getOnActivityChartValueChangeStarted
Ruft den Wert deronActivityChartValueChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartValueChangeStarted property. Stores the handler that is invoked when a chart value change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartValueChangeStarted - Siehe auch:
-
onActivityChartValueChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartValueChangeOngoingProperty()The onActivityChartValueChangeOngoing property. Stores the handler that is invoked while a chart value change is ongoing.- Gibt zurück:
- the onActivityChartValueChangeOngoing property
- Siehe auch:
-
setOnActivityChartValueChangeOngoing
Legt den Wert deronActivityChartValueChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartValueChangeOngoing property. Stores the handler that is invoked while a chart value change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityChartValueChangeOngoing- Siehe auch:
-
getOnActivityChartValueChangeOngoing
Ruft den Wert deronActivityChartValueChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartValueChangeOngoing property. Stores the handler that is invoked while a chart value change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartValueChangeOngoing - Siehe auch:
-
onActivityChartValueChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartValueChangeFinishedProperty()The onActivityChartValueChangeFinished property. Stores the handler that is invoked when a chart value change has finished.- Gibt zurück:
- the onActivityChartValueChangeFinished property
- Siehe auch:
-
setOnActivityChartValueChangeFinished
Legt den Wert deronActivityChartValueChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartValueChangeFinished property. Stores the handler that is invoked when a chart value change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityChartValueChangeFinished- Siehe auch:
-
getOnActivityChartValueChangeFinished
Ruft den Wert deronActivityChartValueChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartValueChangeFinished property. Stores the handler that is invoked when a chart value change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartValueChangeFinished - Siehe auch:
-
onActivityChartHighValueChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeStartedProperty()The onActivityChartHighValueChangeStarted property. Stores the handler that is invoked when a chart high value change starts.- Gibt zurück:
- the onActivityChartHighValueChangeStarted property
- Siehe auch:
-
setOnActivityChartHighValueChangeStarted
Legt den Wert deronActivityChartHighValueChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartHighValueChangeStarted property. Stores the handler that is invoked when a chart high value change starts.
- Parameter:
value- Wert für die EigenschaftonActivityChartHighValueChangeStarted- Siehe auch:
-
getOnActivityChartHighValueChangeStarted
Ruft den Wert deronActivityChartHighValueChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartHighValueChangeStarted property. Stores the handler that is invoked when a chart high value change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartHighValueChangeStarted - Siehe auch:
-
onActivityChartHighValueChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeOngoingProperty()The onActivityChartHighValueChangeOngoing property. Stores the handler that is invoked while a chart high value change is ongoing.- Gibt zurück:
- the onActivityChartHighValueChangeOngoing property
- Siehe auch:
-
setOnActivityChartHighValueChangeOngoing
Legt den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartHighValueChangeOngoing property. Stores the handler that is invoked while a chart high value change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityChartHighValueChangeOngoing- Siehe auch:
-
getOnActivityChartHighValueChangeOngoing
Ruft den Wert deronActivityChartHighValueChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartHighValueChangeOngoing property. Stores the handler that is invoked while a chart high value change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartHighValueChangeOngoing - Siehe auch:
-
onActivityChartHighValueChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartHighValueChangeFinishedProperty()The onActivityChartHighValueChangeFinished property. Stores the handler that is invoked when a chart high value change has finished.- Gibt zurück:
- the onActivityChartHighValueChangeFinished property
- Siehe auch:
-
setOnActivityChartHighValueChangeFinished
Legt den Wert deronActivityChartHighValueChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartHighValueChangeFinished property. Stores the handler that is invoked when a chart high value change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityChartHighValueChangeFinished- Siehe auch:
-
getOnActivityChartHighValueChangeFinished
Ruft den Wert deronActivityChartHighValueChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartHighValueChangeFinished property. Stores the handler that is invoked when a chart high value change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartHighValueChangeFinished - Siehe auch:
-
onActivityChartLowValueChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeStartedProperty()The onActivityChartLowValueChangeStarted property. Stores the handler that is invoked when a chart low value change starts.- Gibt zurück:
- the onActivityChartLowValueChangeStarted property
- Siehe auch:
-
setOnActivityChartLowValueChangeStarted
Legt den Wert deronActivityChartLowValueChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartLowValueChangeStarted property. Stores the handler that is invoked when a chart low value change starts.
- Parameter:
value- Wert für die EigenschaftonActivityChartLowValueChangeStarted- Siehe auch:
-
getOnActivityChartLowValueChangeStarted
Ruft den Wert deronActivityChartLowValueChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartLowValueChangeStarted property. Stores the handler that is invoked when a chart low value change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartLowValueChangeStarted - Siehe auch:
-
onActivityChartLowValueChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeOngoingProperty()The onActivityChartLowValueChangeOngoing property. Stores the handler that is invoked while a chart low value change is ongoing.- Gibt zurück:
- the onActivityChartLowValueChangeOngoing property
- Siehe auch:
-
setOnActivityChartLowValueChangeOngoing
Legt den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartLowValueChangeOngoing property. Stores the handler that is invoked while a chart low value change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityChartLowValueChangeOngoing- Siehe auch:
-
getOnActivityChartLowValueChangeOngoing
Ruft den Wert deronActivityChartLowValueChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartLowValueChangeOngoing property. Stores the handler that is invoked while a chart low value change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartLowValueChangeOngoing - Siehe auch:
-
onActivityChartLowValueChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityChartLowValueChangeFinishedProperty()The onActivityChartLowValueChangeFinished property. Stores the handler that is invoked when a chart low value change has finished.- Gibt zurück:
- the onActivityChartLowValueChangeFinished property
- Siehe auch:
-
setOnActivityChartLowValueChangeFinished
Legt den Wert deronActivityChartLowValueChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityChartLowValueChangeFinished property. Stores the handler that is invoked when a chart low value change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityChartLowValueChangeFinished- Siehe auch:
-
getOnActivityChartLowValueChangeFinished
Ruft den Wert deronActivityChartLowValueChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityChartLowValueChangeFinished property. Stores the handler that is invoked when a chart low value change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityChartLowValueChangeFinished - Siehe auch:
-
onActivityHorizontalDragStartedProperty
The onActivityHorizontalDragStarted property. Stores the handler that is invoked when a horizontal activity drag starts.- Gibt zurück:
- the onActivityHorizontalDragStarted property
- Siehe auch:
-
setOnActivityHorizontalDragStarted
Legt den Wert deronActivityHorizontalDragStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityHorizontalDragStarted property. Stores the handler that is invoked when a horizontal activity drag starts.
- Parameter:
value- Wert für die EigenschaftonActivityHorizontalDragStarted- Siehe auch:
-
getOnActivityHorizontalDragStarted
Ruft den Wert deronActivityHorizontalDragStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityHorizontalDragStarted property. Stores the handler that is invoked when a horizontal activity drag starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityHorizontalDragStarted - Siehe auch:
-
onActivityHorizontalDragOngoingProperty
The onActivityHorizontalDragOngoing property. Stores the handler that is invoked while a horizontal activity drag is ongoing.- Gibt zurück:
- the onActivityHorizontalDragOngoing property
- Siehe auch:
-
setOnActivityHorizontalDragOngoing
Legt den Wert deronActivityHorizontalDragOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityHorizontalDragOngoing property. Stores the handler that is invoked while a horizontal activity drag is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityHorizontalDragOngoing- Siehe auch:
-
getOnActivityHorizontalDragOngoing
Ruft den Wert deronActivityHorizontalDragOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityHorizontalDragOngoing property. Stores the handler that is invoked while a horizontal activity drag is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityHorizontalDragOngoing - Siehe auch:
-
onActivityHorizontalDragFinishedProperty
The onActivityHorizontalDragFinished property. Stores the handler that is invoked when a horizontal activity drag has finished.- Gibt zurück:
- the onActivityHorizontalDragFinished property
- Siehe auch:
-
setOnActivityHorizontalDragFinished
Legt den Wert deronActivityHorizontalDragFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityHorizontalDragFinished property. Stores the handler that is invoked when a horizontal activity drag has finished.
- Parameter:
value- Wert für die EigenschaftonActivityHorizontalDragFinished- Siehe auch:
-
getOnActivityHorizontalDragFinished
Ruft den Wert deronActivityHorizontalDragFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityHorizontalDragFinished property. Stores the handler that is invoked when a horizontal activity drag has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityHorizontalDragFinished - Siehe auch:
-
onActivityVerticalDragStartedProperty
The onActivityVerticalDragStarted property. Stores the handler that is invoked when a vertical activity drag starts.- Gibt zurück:
- the onActivityVerticalDragStarted property
- Siehe auch:
-
setOnActivityVerticalDragStarted
Legt den Wert deronActivityVerticalDragStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragStarted property. Stores the handler that is invoked when a vertical activity drag starts.
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragStarted- Siehe auch:
-
getOnActivityVerticalDragStarted
Ruft den Wert deronActivityVerticalDragStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragStarted property. Stores the handler that is invoked when a vertical activity drag starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragStarted - Siehe auch:
-
onActivityVerticalDragOngoingProperty
The onActivityVerticalDragOngoing property. Stores the handler that is invoked while a vertical activity drag is ongoing.- Gibt zurück:
- the onActivityVerticalDragOngoing property
- Siehe auch:
-
setOnActivityVerticalDragOngoing
Legt den Wert deronActivityVerticalDragOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragOngoing property. Stores the handler that is invoked while a vertical activity drag is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragOngoing- Siehe auch:
-
getOnActivityVerticalDragOngoing
Ruft den Wert deronActivityVerticalDragOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragOngoing property. Stores the handler that is invoked while a vertical activity drag is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragOngoing - Siehe auch:
-
onActivityVerticalDragFinishedProperty
The onActivityVerticalDragFinished property. Stores the handler that is invoked when a vertical activity drag has finished.- Gibt zurück:
- the onActivityVerticalDragFinished property
- Siehe auch:
-
setOnActivityVerticalDragFinished
Legt den Wert deronActivityVerticalDragFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragFinished property. Stores the handler that is invoked when a vertical activity drag has finished.
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragFinished- Siehe auch:
-
getOnActivityVerticalDragFinished
Ruft den Wert deronActivityVerticalDragFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragFinished property. Stores the handler that is invoked when a vertical activity drag has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragFinished - Siehe auch:
-
onActivityVerticalDragDoneProperty
The onActivityVerticalDragDone property. Stores the handler that is invoked after a vertical activity drag has been completed.- Gibt zurück:
- the onActivityVerticalDragDone property
- Siehe auch:
-
setOnActivityVerticalDragDone
Legt den Wert deronActivityVerticalDragDone-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragDone property. Stores the handler that is invoked after a vertical activity drag has been completed.
- Parameter:
value- Wert für die EigenschaftonActivityVerticalDragDone- Siehe auch:
-
getOnActivityVerticalDragDone
Ruft den Wert deronActivityVerticalDragDone-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityVerticalDragDone property. Stores the handler that is invoked after a vertical activity drag has been completed.
- Gibt zurück:
- Wert der Eigenschaft
onActivityVerticalDragDone - Siehe auch:
-
onActivityEndTimeChangeStartedProperty
The onActivityEndTimeChangeStarted property. Stores the handler that is invoked when an activity end time change starts.- Gibt zurück:
- the onActivityEndTimeChangeStarted property
- Siehe auch:
-
setOnActivityEndTimeChangeStarted
Legt den Wert deronActivityEndTimeChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityEndTimeChangeStarted property. Stores the handler that is invoked when an activity end time change starts.
- Parameter:
value- Wert für die EigenschaftonActivityEndTimeChangeStarted- Siehe auch:
-
getOnActivityEndTimeChangeStarted
Ruft den Wert deronActivityEndTimeChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityEndTimeChangeStarted property. Stores the handler that is invoked when an activity end time change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityEndTimeChangeStarted - Siehe auch:
-
onActivityEndTimeChangeOngoingProperty
The onActivityEndTimeChangeOngoing property. Stores the handler that is invoked while an activity end time change is ongoing.- Gibt zurück:
- the onActivityEndTimeChangeOngoing property
- Siehe auch:
-
setOnActivityEndTimeChangeOngoing
Legt den Wert deronActivityEndTimeChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityEndTimeChangeOngoing property. Stores the handler that is invoked while an activity end time change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityEndTimeChangeOngoing- Siehe auch:
-
getOnActivityEndTimeChangeOngoing
Ruft den Wert deronActivityEndTimeChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityEndTimeChangeOngoing property. Stores the handler that is invoked while an activity end time change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityEndTimeChangeOngoing - Siehe auch:
-
onActivityEndTimeChangeFinishedProperty
The onActivityEndTimeChangeFinished property. Stores the handler that is invoked when an activity end time change has finished.- Gibt zurück:
- the onActivityEndTimeChangeFinished property
- Siehe auch:
-
setOnActivityEndTimeChangeFinished
Legt den Wert deronActivityEndTimeChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityEndTimeChangeFinished property. Stores the handler that is invoked when an activity end time change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityEndTimeChangeFinished- Siehe auch:
-
getOnActivityEndTimeChangeFinished
Ruft den Wert deronActivityEndTimeChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityEndTimeChangeFinished property. Stores the handler that is invoked when an activity end time change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityEndTimeChangeFinished - Siehe auch:
-
onActivityPercentageChangeStartedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityPercentageChangeStartedProperty()The onActivityPercentageChangeStarted property. Stores the handler that is invoked when an activity percentage change starts.- Gibt zurück:
- the onActivityPercentageChangeStarted property
- Siehe auch:
-
setOnActivityPercentageChangeStarted
Legt den Wert deronActivityPercentageChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityPercentageChangeStarted property. Stores the handler that is invoked when an activity percentage change starts.
- Parameter:
value- Wert für die EigenschaftonActivityPercentageChangeStarted- Siehe auch:
-
getOnActivityPercentageChangeStarted
Ruft den Wert deronActivityPercentageChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityPercentageChangeStarted property. Stores the handler that is invoked when an activity percentage change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityPercentageChangeStarted - Siehe auch:
-
onActivityPercentageChangeOngoingProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityPercentageChangeOngoingProperty()The onActivityPercentageChangeOngoing property. Stores the handler that is invoked while an activity percentage change is ongoing.- Gibt zurück:
- the onActivityPercentageChangeOngoing property
- Siehe auch:
-
setOnActivityPercentageChangeOngoing
Legt den Wert deronActivityPercentageChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityPercentageChangeOngoing property. Stores the handler that is invoked while an activity percentage change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityPercentageChangeOngoing- Siehe auch:
-
getOnActivityPercentageChangeOngoing
Ruft den Wert deronActivityPercentageChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityPercentageChangeOngoing property. Stores the handler that is invoked while an activity percentage change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityPercentageChangeOngoing - Siehe auch:
-
onActivityPercentageChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityPercentageChangeFinishedProperty()The onActivityPercentageChangeFinished property. Stores the handler that is invoked when an activity percentage change has finished.- Gibt zurück:
- the onActivityPercentageChangeFinished property
- Siehe auch:
-
setOnActivityPercentageChangeFinished
Legt den Wert deronActivityPercentageChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityPercentageChangeFinished property. Stores the handler that is invoked when an activity percentage change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityPercentageChangeFinished- Siehe auch:
-
getOnActivityPercentageChangeFinished
Ruft den Wert deronActivityPercentageChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityPercentageChangeFinished property. Stores the handler that is invoked when an activity percentage change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityPercentageChangeFinished - Siehe auch:
-
onActivityStartTimeChangeStartedProperty
The onActivityStartTimeChangeStarted property. Stores the handler that is invoked when an activity start time change starts.- Gibt zurück:
- the onActivityStartTimeChangeStarted property
- Siehe auch:
-
setOnActivityStartTimeChangeStarted
Legt den Wert deronActivityStartTimeChangeStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityStartTimeChangeStarted property. Stores the handler that is invoked when an activity start time change starts.
- Parameter:
value- Wert für die EigenschaftonActivityStartTimeChangeStarted- Siehe auch:
-
getOnActivityStartTimeChangeStarted
Ruft den Wert deronActivityStartTimeChangeStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityStartTimeChangeStarted property. Stores the handler that is invoked when an activity start time change starts.
- Gibt zurück:
- Wert der Eigenschaft
onActivityStartTimeChangeStarted - Siehe auch:
-
onActivityStartTimeChangeOngoingProperty
The onActivityStartTimeChangeOngoing property. Stores the handler that is invoked while an activity start time change is ongoing.- Gibt zurück:
- the onActivityStartTimeChangeOngoing property
- Siehe auch:
-
setOnActivityStartTimeChangeOngoing
Legt den Wert deronActivityStartTimeChangeOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityStartTimeChangeOngoing property. Stores the handler that is invoked while an activity start time change is ongoing.
- Parameter:
value- Wert für die EigenschaftonActivityStartTimeChangeOngoing- Siehe auch:
-
getOnActivityStartTimeChangeOngoing
Ruft den Wert deronActivityStartTimeChangeOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityStartTimeChangeOngoing property. Stores the handler that is invoked while an activity start time change is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onActivityStartTimeChangeOngoing - Siehe auch:
-
onActivityStartTimeChangeFinishedProperty
public final ObjectProperty<EventHandler<ActivityEvent>> onActivityStartTimeChangeFinishedProperty()The onActivityStartTimeChangeFinished property. Stores the handler that is invoked when an activity start time change has finished.- Gibt zurück:
- the onActivityStartTimeChangeFinished property
- Siehe auch:
-
setOnActivityStartTimeChangeFinished
Legt den Wert deronActivityStartTimeChangeFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onActivityStartTimeChangeFinished property. Stores the handler that is invoked when an activity start time change has finished.
- Parameter:
value- Wert für die EigenschaftonActivityStartTimeChangeFinished- Siehe auch:
-
getOnActivityStartTimeChangeFinished
Ruft den Wert deronActivityStartTimeChangeFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onActivityStartTimeChangeFinished property. Stores the handler that is invoked when an activity start time change has finished.
- Gibt zurück:
- Wert der Eigenschaft
onActivityStartTimeChangeFinished - Siehe auch:
-
onLassoSelectionProperty
The onLassoSelection property. Stores the handler that is invoked for lasso selection events.- Gibt zurück:
- the onLassoSelection property
- Siehe auch:
-
setOnLassoSelection
Legt den Wert deronLassoSelection-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onLassoSelection property. Stores the handler that is invoked for lasso selection events.
- Parameter:
value- Wert für die EigenschaftonLassoSelection- Siehe auch:
-
getOnLassoSelection
Ruft den Wert deronLassoSelection-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onLassoSelection property. Stores the handler that is invoked for lasso selection events.
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelection - Siehe auch:
-
onLassoSelectionStartedProperty
The onLassoSelectionStarted property. Stores the handler that is invoked when a lasso selection starts.- Gibt zurück:
- the onLassoSelectionStarted property
- Siehe auch:
-
setOnLassoSelectionStarted
Legt den Wert deronLassoSelectionStarted-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onLassoSelectionStarted property. Stores the handler that is invoked when a lasso selection starts.
- Parameter:
value- Wert für die EigenschaftonLassoSelectionStarted- Siehe auch:
-
getOnLassoSelectionStarted
Ruft den Wert deronLassoSelectionStarted-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onLassoSelectionStarted property. Stores the handler that is invoked when a lasso selection starts.
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelectionStarted - Siehe auch:
-
onLassoSelectionOngoingProperty
The onLassoSelectionOngoing property. Stores the handler that is invoked while a lasso selection is ongoing.- Gibt zurück:
- the onLassoSelectionOngoing property
- Siehe auch:
-
setOnLassoSelectionOngoing
Legt den Wert deronLassoSelectionOngoing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onLassoSelectionOngoing property. Stores the handler that is invoked while a lasso selection is ongoing.
- Parameter:
value- Wert für die EigenschaftonLassoSelectionOngoing- Siehe auch:
-
getOnLassoSelectionOngoing
Ruft den Wert deronLassoSelectionOngoing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onLassoSelectionOngoing property. Stores the handler that is invoked while a lasso selection is ongoing.
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelectionOngoing - Siehe auch:
-
onLassoSelectionFinishedProperty
The onLassoSelectionFinished property. Stores the handler that is invoked when a lasso selection has finished.- Gibt zurück:
- the onLassoSelectionFinished property
- Siehe auch:
-
setOnLassoSelectionFinished
Legt den Wert deronLassoSelectionFinished-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The onLassoSelectionFinished property. Stores the handler that is invoked when a lasso selection has finished.
- Parameter:
value- Wert für die EigenschaftonLassoSelectionFinished- Siehe auch:
-
getOnLassoSelectionFinished
Ruft den Wert deronLassoSelectionFinished-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The onLassoSelectionFinished property. Stores the handler that is invoked when a lasso selection has finished.
- Gibt zurück:
- Wert der Eigenschaft
onLassoSelectionFinished - Siehe auch:
-
editModeProperty
A property used to store the currently active editing mode, e.g. "changing start time", "changing end time", "dragging horizontally", "dragging vertically", etc...
The property is read-only as it can not be set from the outside. It is being updated when the user moves the mouse cursor on top of an activity. The edit mode depends on the location of the cursor (left or right edge, center). SeesetActivityEditingCallback(Class, Callback)for mapping mouse events to editing operations.- Gibt zurück:
- the currently active edit mode
- Seit:
- 1.0
- Siehe auch:
-
getEditMode
Returns the value ofeditModeProperty().- Gibt zurück:
- the currently active edit mode
- Seit:
- 1.0
-
getHighlightedRows
Returns a set that is used to store the currently highlighted rows. A row added to this set will start blinking and draw the attention of the user to it.- Gibt zurück:
- the set of highlighted rows
- Seit:
- 1.0
- Siehe auch:
-
getHighlightedActivities
Returns a set that is used to store the currently highighted activities. An activity added to this set will start blinking and draw the attention of the user to it.- Gibt zurück:
- the set of highlighted activities
- Seit:
- 1.0
- Siehe auch:
-
highlightDelayProperty
A property used to store the delay between two "blinks" of highlighted rows or activities.- Gibt zurück:
- the property used for the delay (in milliseconds)
- Seit:
- 1.0
- Siehe auch:
-
setHighlightDelay
public final void setHighlightDelay(long delay) Sets the value ofhighlightDelayProperty().- Parameter:
delay- the highlight delay in milliseconds- Seit:
- 1.0
-
getHighlightDelay
public final long getHighlightDelay()Returns the value ofhighlightDelayProperty().- Gibt zurück:
- the highlight delay in milliseconds
- Seit:
- 1.0
-
highlightedProperty
A read-only property used to control the highlighting effect. The value of this property gets frequently toggled between true and false so that is triggers a redraw of the graphics and a blink effect.- Gibt zurück:
- a read-only property that signals if the highlight is on or off (causes blinking)
- Seit:
- 1.0
- Siehe auch:
-
isHighlighted
public final boolean isHighlighted()Returns the value ofhighlightedProperty().- Gibt zurück:
- a flag value used to toggle the highlighting effect
- Seit:
- 1.0
-
isDarkTheme
public boolean isDarkTheme()Returnstrueif the application is currently using a dark theme.The default implementation inspects the application's user-agent stylesheet URL. It returns
truewhen one of the AtlantaFX dark variants is active: Primer Dark, Nord Dark, Cupertino Dark, or Dracula. For the default Modena theme and for all AtlantaFX light themes this method returnsfalse.Detection relies solely on string-matching the stylesheet URL and therefore requires no compile-time dependency on the AtlantaFX library. Subclasses may override this method to implement custom theme detection logic.
- Gibt zurück:
trueif a dark theme is currently active- Seit:
- 1.0
-
contextMenuCallbackProperty
public final ObjectProperty<Callback<GraphicsBase.ContextMenuParameter<R>, ContextMenu>> contextMenuCallbackProperty()A property used to store a callback which is used for creating a context menu. Context menus can also be used by simply callingControl.setContextMenu(ContextMenu)but using this callback saves you from collecting all the information and objects that can be found at the location of the context menu trigger event.- Gibt zurück:
- a callback for creating a context menu
- Seit:
- 1.0
- Siehe auch:
-
setContextMenuCallback
public final void setContextMenuCallback(Callback<GraphicsBase.ContextMenuParameter<R>, ContextMenu> callback) Sets the value ofcontextMenuCallbackProperty().- Parameter:
callback- a callback for creating a parameterized context menu- Seit:
- 1.0
-
getContextMenuCallback
Returns the value ofcontextMenuCallbackProperty().- Gibt zurück:
- the callback for creating a parameterized context menu
- Seit:
- 1.0
-
autoMarkedTimeIntervalProperty
Controls whether the marked time interval property of theEventlinewill be automatically set when the user performs certain editing operations (e.g. move an activity horizontally). The default is "true".- Gibt zurück:
- the auto marked time interval property
- Siehe auch:
-
isAutoMarkedTimeInterval
public final boolean isAutoMarkedTimeInterval()Returns the value ofautoMarkedTimeIntervalProperty().- Gibt zurück:
- true if the marked time interval gets updated automatically
-
setAutoMarkedTimeInterval
public final void setAutoMarkedTimeInterval(boolean auto) Sets the value ofautoMarkedTimeIntervalProperty().- Parameter:
auto- if true, the marked time interval will be updated automatically
-
maxGridLevelProperty
A property used to store the number of grid levels that the user wants to see in the graphics view. The value of this property must be between 1 and 5. The grid level depends on the number of scales shown by the dateline (seeDateline.getScaleResolutions()). If the dateline is currently showing two scales (e.g. days and weeks) then the graphics view and theGridLinesLayercan also display two different grid lines, for example a light gray one for days and a dark gray one for weeks.- Gibt zurück:
- the maximum number of grid levels
- Seit:
- 1.0
- Siehe auch:
-
getMaxGridLevel
public final int getMaxGridLevel()Returns the value ofmaxGridLevelProperty().- Gibt zurück:
- the maximum number of grid levels
- Seit:
- 1.0
-
setMaxGridLevel
public final void setMaxGridLevel(int max) Sets the value ofmaxGridLevelProperty().- Parameter:
max- the maximum number of grid levels, a value between 1 and 5- Seit:
- 1.0
-
showVerticalCursorProperty
A property used to control whether a vertical cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Gibt zurück:
- a property used for controlling the visibility of a vertical cursor line
- Seit:
- 1.0
- Siehe auch:
-
isShowVerticalCursor
public final boolean isShowVerticalCursor()Returns the value ofshowVerticalCursorProperty().- Gibt zurück:
- true if the cursor will be shown
- Seit:
- 1.0
-
setShowVerticalCursor
public final void setShowVerticalCursor(boolean show) Sets the value ofshowVerticalCursorProperty().- Parameter:
show- if true, a vertical cursor line will be shown- Seit:
- 1.0
-
showHorizontalCursorProperty
A property used to control wether a horizontal cursor line will be shown by the graphics view. The line will always follow the location of the mouse cursor.- Gibt zurück:
- a property used for controlling the visibility of a horizontal cursor line
- Seit:
- 1.0
- Siehe auch:
-
isShowHorizontalCursor
public final boolean isShowHorizontalCursor()Returns the value ofshowHorizontalCursorProperty().- Gibt zurück:
- true if the cursor will be shown
- Seit:
- 1.0
-
setShowHorizontalCursor
public final void setShowHorizontalCursor(boolean show) Sets the value ofshowHorizontalCursorProperty().- Parameter:
show- if true, a horizontal cursor line will be shown- Seit:
- 1.0
-
showMarkedTimeIntervalProperty
A property used to control whether vertical lines will be shown for a marked time interval (e.g. while dragging the marked interval will display the new location of the dragged activity).- Gibt zurück:
- a property used for controlling the visibility of a horizontal cursor line
- Seit:
- 1.1
- Siehe auch:
-
isShowMarkedTimeInterval
public final boolean isShowMarkedTimeInterval()Returns the value ofshowMarkedTimeIntervalProperty().- Gibt zurück:
- true if the marker lines will be shown
- Seit:
- 1.1
- Siehe auch:
-
setShowMarkedTimeInterval
public final void setShowMarkedTimeInterval(boolean show) Sets the value ofshowMarkedTimeIntervalProperty().- Parameter:
show- if true, marker lines will be drawn for the currently marked time interval- Seit:
- 1.1
- Siehe auch:
-
debugModeProperty
A property used to enable / disable the debug mode. The debug mode will cause the object bounds of activities to be rendered in the graphics view and also the bounds of the lasso selection tool. Other information might get added in the future.- Gibt zurück:
- a property used to enable / disable the debug mode
- Seit:
- 1.0
- Siehe auch:
-
isDebugMode
public final boolean isDebugMode()Returns the value ofdebugModeProperty().- Gibt zurück:
- true if the debug mode is enabled
- Seit:
- 1.0
-
setDebugMode
public final void setDebugMode(boolean debug) Sets the value ofdebugModeProperty().- Parameter:
debug- if true, the debug mode is enabled- Seit:
- 1.0
-
autoGridEnabledProperty
A property used to enable / disable the autogrid mode. The autogrid mode will cause activities to snap to times based on the currently shown granularity of the dateline. If the dateline is showing "days" then the activities will snap to the beginning and / or end of a day. If the dateline is showing hours then the activities will snap to full hours.- Gibt zurück:
- a property used to enable / disable the debug mode
- Seit:
- 1.1
- Siehe auch:
-
isAutoGridEnabled
public final boolean isAutoGridEnabled()Returns the value ofautoGridEnabledProperty().- Gibt zurück:
- true if the autogrid mode is enabled
- Seit:
- 1.1
-
setAutoGridEnabled
public final void setAutoGridEnabled(boolean auto) Sets the value ofautoGridEnabledProperty().- Parameter:
auto- if true, the autogrid mode is enabled- Seit:
- 1.1
-
gridEnabledProperty
A convenience read-only property to check whether any kind of grid is active, either the automatic grid or a virtual grid.- Gibt zurück:
- true if the graphics is using a grid for its editing operations
- Seit:
- 1.2
- Siehe auch:
-
isGridEnabled
public final boolean isGridEnabled()Returns the value ofgridEnabledProperty().- Gibt zurück:
- true if any kind of grid support is enabled
- Seit:
- 1.2
-
selectionModeProperty
A property used to store the currently supported selection mode. The graphics view supports single, multiple, and none.- Gibt zurück:
- the property used to store the selection mode
- Seit:
- 1.0
- Siehe auch:
-
getSelectionMode
Returns the value ofselectionModeProperty().- Gibt zurück:
- the currently used selection mode (single, all, none)
- Seit:
- 1.0
-
setSelectionMode
Sets the value ofselectionModeProperty().- Parameter:
mode- the new selection mode- Seit:
- 1.0
-
getSelectedActivities
Returns the list of currently selected activities.- Gibt zurück:
- the list of selected activities
- Seit:
- 1.0
-
lassoSelectionBehaviourProperty
A property used to store the currently used lasso selection behaviour. This value of this property controls when an activity is actually considered selected by the lasso: does it need to be completely inside the lasso bounds or is it enough when it gets touched by the lasso?- Gibt zurück:
- the property used to store the lasso selection behaviour
- Seit:
- 1.0
- Siehe auch:
-
setLassoSelectionBehaviour
Sets the value oflassoSelectionBehaviourProperty().- Parameter:
behaviour- the lasso selection behaviour to use- Seit:
- 1.0
-
getLassoSelectionBehaviour
Returns the value of thelassoSelectionBehaviourProperty().- Gibt zurück:
- the currently used lasso selection behaviour
- Seit:
- 1.0
-
getCalendars
Returns the list of calendars that are registered with the graphics view. Calendars are used to render static information in the background of each row. One example are the days that are considered weekend days (e.g. saturday and sunday). They will be drawn with a gray background.- Gibt zurück:
- the calendars drawn by the graphics view
- Seit:
- 1.0
- Siehe auch:
-
showEarliestActivities
public final void showEarliestActivities()Makes theTimelinestart with the earliest time used by the currently loaded rows.- Seit:
- 1.0
- Siehe auch:
-
showLatestActivities
public final void showLatestActivities()Makes theTimelineshow the latest time used by the currently loaded rows.- Seit:
- 1.0
- Siehe auch:
-
showAllActivities
public final void showAllActivities()Makes theTimelineshow a time range starting with the earliest time used and ending with the latest time used by all currently loaded rows.- Seit:
- 1.0
- Siehe auch:
-
getEarliestTimeUsed
Calculates and returns the earliest time used by all rows in the model.- Gibt zurück:
- the earliest time used by the graphics view
- Seit:
- 1.0
- Siehe auch:
-
getLatestTimeUsed
Calculates and returns the latest time used by all rows in the model.- Gibt zurück:
- the latest time used by the graphics view
- Seit:
- 1.0
- Siehe auch:
-
hoverActivityProperty
The hoverActivity property. Stores the activity currently under the mouse pointer.- Gibt zurück:
- the hoverActivity property
- Siehe auch:
-
getHoverActivity
Ruft den Wert derhoverActivity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The hoverActivity property. Stores the activity currently under the mouse pointer.
- Gibt zurück:
- Wert der Eigenschaft
hoverActivity - Siehe auch:
-
hoverRowProperty
The hoverRow property. Stores the row currently under the mouse pointer.- Gibt zurück:
- the hoverRow property
- Siehe auch:
-
getHoverRow
Ruft den Wert derhoverRow-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The hoverRow property. Stores the row currently under the mouse pointer.
- Gibt zurück:
- Wert der Eigenschaft
hoverRow - Siehe auch:
-
hoverLayoutProperty
The hoverLayout property. Stores the layout currently under the mouse pointer.- Gibt zurück:
- the hoverLayout property
- Siehe auch:
-
getHoverLayout
Ruft den Wert derhoverLayout-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The hoverLayout property. Stores the layout currently under the mouse pointer.
- Gibt zurück:
- Wert der Eigenschaft
hoverLayout - Siehe auch:
-
editedActivityProperty
The editedActivity property. Stores the activity that is currently being edited.- Gibt zurück:
- the editedActivity property
- Siehe auch:
-
getEditedActivity
Ruft den Wert dereditedActivity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The editedActivity property. Stores the activity that is currently being edited.
- Gibt zurück:
- Wert der Eigenschaft
editedActivity - Siehe auch:
-
pressedActivityProperty
The pressedActivity property. Stores the activity that is currently pressed.- Gibt zurück:
- the pressedActivity property
- Siehe auch:
-
getPressedActivity
Ruft den Wert derpressedActivity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The pressedActivity property. Stores the activity that is currently pressed.
- Gibt zurück:
- Wert der Eigenschaft
pressedActivity - Siehe auch:
-
virtualGridProperty
The virtualGrid property. Stores the virtual grid currently used by the graphics view.- Gibt zurück:
- the virtualGrid property
- Siehe auch:
-
getVirtualGrid
Ruft den Wert dervirtualGrid-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The virtualGrid property. Stores the virtual grid currently used by the graphics view.
- Gibt zurück:
- Wert der Eigenschaft
virtualGrid - Siehe auch:
-
setVirtualGrid
Legt den Wert dervirtualGrid-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The virtualGrid property. Stores the virtual grid currently used by the graphics view.
- Parameter:
grid- Wert für die EigenschaftvirtualGrid- Siehe auch:
-
getVirtualGrids
Returns the available virtual grids.- Gibt zurück:
- the available virtual grids
-
placeholderProperty
The placeholder property. Stores the placeholder node shown when the graphics view has no content to display.- Gibt zurück:
- the placeholder property
- Siehe auch:
-
getPlaceholder
Ruft den Wert derplaceholder-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The placeholder property. Stores the placeholder node shown when the graphics view has no content to display.
- Gibt zurück:
- Wert der Eigenschaft
placeholder - Siehe auch:
-
setPlaceholder
Legt den Wert derplaceholder-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The placeholder property. Stores the placeholder node shown when the graphics view has no content to display.
- Parameter:
node- Wert für die Eigenschaftplaceholder- Siehe auch:
-
getRowPanes
-
redraw
public void redraw()Performs a redraw of the displayed activities. Also lays out the links shown by theLinksCanvas. -
redraw
Performs a redraw of the displayed activities and logs the given reason. Also lays out the links shown by theLinksCanvas. -
redrawImmediately
public void redrawImmediately()Forces an immediate redraw of all rows.- Seit:
- 11.12.3
- Siehe auch:
-
drawLinks
Performs a redraw of the displayed links and logs the given reason. -
getAllActivityRenderers
Returns a list of all currently registered activity renderers.- Gibt zurück:
- all activity renderers
- Seit:
- 8.9.0
-
setActivityRenderer
public final <A extends Activity> void setActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType, ActivityRenderer<? extends A> renderer) Registers a renderer for the given activity and layout type. The renderer will be used to "draw" any activity of the given type when the activity is laid out via the given layout.- Typparameter:
A- the type of the activity- Parameter:
activityType- the type of the activitylayoutType- the type of the layoutrenderer- the renderer instance
-
getActivityRenderer
public final <A extends Activity> ActivityRenderer<? extends A> getActivityRenderer(Class<? extends A> activityType, Class<? extends Layout> layoutType) Returns the renderer registered for the given activity and layout types.- Parameter:
activityType- the activity typelayoutType- the layout type- Gibt zurück:
- the matching activity renderer, or
nullif no renderer is registered
-
setLinkRenderer
Sets a custom link renderer for the given type of activity link.- Parameter:
clazz- the activity typerenderer- the renderer
-
getLinkRenderer
Returns a renderer for the given activity link type.- Typparameter:
AL- the activity link type- Parameter:
clazz- the activity link type- Gibt zurück:
- the link renderer
-
setActivityEditingCallback
public final void setActivityEditingCallback(Class<? extends MutableActivity> activityType, Callback<GraphicsBase.EditingCallbackParameter, Boolean> callback) Registers a callback used to determine if a given editing operation can be used for a given activity.- Parameter:
activityType- the type of the activity for which to use the callbackcallback- the callback- Seit:
- 1.0
-
getActivityEditingCallback
public final <A extends Activity> Callback<GraphicsBase.EditingCallbackParameter, Boolean> getActivityEditingCallback(Class<A> activityType) -
setRowDragAndDropCallback
public final void setRowDragAndDropCallback(Class<? extends Row> rowType, Callback<GraphicsBase.DragAndDropInfo, Boolean> callback) Specifies a callback that will be invoked when the user drags an activity over a row of the given type. The callback implementation then determines if a drop would be accepted in the given row.- Parameter:
rowType- the type of the row for which the callback gets registeredcallback- the callback implementation- Seit:
- 1.0
-
getRowDragAndDropCallback
public final Callback<GraphicsBase.DragAndDropInfo, Boolean> getRowDragAndDropCallback(Class<? extends Row> rowType) Returns a callback that will be invoked when the user drags an activity over a row of the given type. The callback implementation then determines if a drop would be accepted in the given row.- Parameter:
rowType- the type of the row for which the callback gets registered- Gibt zurück:
- the callback implementation
- Seit:
- 1.0
-
dragAndDropInfoProperty
A property used to store the current drag and drop information. This object stores data relevant to the current drag and drop operation.- Gibt zurück:
- the property used to store the current drag and drop information
- Seit:
- 1.0
- Siehe auch:
-
getDragAndDropInfo
Returns the value ofdragAndDropInfoProperty().- Gibt zurück:
- the current drag and drop information
- Seit:
- 1.0
-
dragImageProviderProperty
The dragImageProvider property. Stores the callback used to create drag images for activity drag and drop operations.- Gibt zurück:
- the dragImageProvider property
- Siehe auch:
-
setDragImageProvider
Legt den Wert derdragImageProvider-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The dragImageProvider property. Stores the callback used to create drag images for activity drag and drop operations.
- Parameter:
provider- Wert für die EigenschaftdragImageProvider- Siehe auch:
-
getDragImageProvider
Ruft den Wert derdragImageProvider-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The dragImageProvider property. Stores the callback used to create drag images for activity drag and drop operations.
- Gibt zurück:
- Wert der Eigenschaft
dragImageProvider - Siehe auch:
-
getBackgroundSystemLayer
-
getForegroundSystemLayer
-
getSystemLayer
-
getBackgroundSystemLayers
Returns the system layers rendered behind the activities.- Gibt zurück:
- the background system layers
-
getForegroundSystemLayers
Returns the system layers rendered in front of the activities.- Gibt zurück:
- the foreground system layers
-
showAgendaLinesLayerProperty
The showAgendaLinesLayer property. Controls whether the agenda lines layer is shown.- Gibt zurück:
- the showAgendaLinesLayer property
- Siehe auch:
-
setShowAgendaLinesLayer
public final void setShowAgendaLinesLayer(boolean show) Legt den Wert dershowAgendaLinesLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showAgendaLinesLayer property. Controls whether the agenda lines layer is shown.
- Parameter:
show- Wert für die EigenschaftshowAgendaLinesLayer- Siehe auch:
-
isShowAgendaLinesLayer
public final boolean isShowAgendaLinesLayer()Ruft den Wert dershowAgendaLinesLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showAgendaLinesLayer property. Controls whether the agenda lines layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showAgendaLinesLayer - Siehe auch:
-
showCalendarLayerProperty
The showCalendarLayer property. Controls whether the calendar layer is shown.- Gibt zurück:
- the showCalendarLayer property
- Siehe auch:
-
setShowCalendarLayer
public final void setShowCalendarLayer(boolean show) Legt den Wert dershowCalendarLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showCalendarLayer property. Controls whether the calendar layer is shown.
- Parameter:
show- Wert für die EigenschaftshowCalendarLayer- Siehe auch:
-
isShowCalendarLayer
public final boolean isShowCalendarLayer()Ruft den Wert dershowCalendarLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showCalendarLayer property. Controls whether the calendar layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showCalendarLayer - Siehe auch:
-
showLayoutLayerProperty
The showLayoutLayer property. Controls whether the layout layer is shown.- Gibt zurück:
- the showLayoutLayer property
- Siehe auch:
-
setShowLayoutLayer
public final void setShowLayoutLayer(boolean show) Legt den Wert dershowLayoutLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showLayoutLayer property. Controls whether the layout layer is shown.
- Parameter:
show- Wert für die EigenschaftshowLayoutLayer- Siehe auch:
-
isShowLayoutLayer
public final boolean isShowLayoutLayer()Ruft den Wert dershowLayoutLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showLayoutLayer property. Controls whether the layout layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showLayoutLayer - Siehe auch:
-
showChartLinesLayerProperty
The showChartLinesLayer property. Controls whether the chart lines layer is shown.- Gibt zurück:
- the showChartLinesLayer property
- Siehe auch:
-
setShowChartLinesLayer
public final void setShowChartLinesLayer(boolean show) Legt den Wert dershowChartLinesLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showChartLinesLayer property. Controls whether the chart lines layer is shown.
- Parameter:
show- Wert für die EigenschaftshowChartLinesLayer- Siehe auch:
-
isShowChartLinesLayer
public final boolean isShowChartLinesLayer()Ruft den Wert dershowChartLinesLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showChartLinesLayer property. Controls whether the chart lines layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showChartLinesLayer - Siehe auch:
-
showGridLineLayerProperty
The showGridLineLayer property. Controls whether the grid lines layer is shown.- Gibt zurück:
- the showGridLineLayer property
- Siehe auch:
-
setShowGridLineLayer
public final void setShowGridLineLayer(boolean show) Legt den Wert dershowGridLineLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showGridLineLayer property. Controls whether the grid lines layer is shown.
- Parameter:
show- Wert für die EigenschaftshowGridLineLayer- Siehe auch:
-
isShowGridLineLayer
public final boolean isShowGridLineLayer()Ruft den Wert dershowGridLineLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showGridLineLayer property. Controls whether the grid lines layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showGridLineLayer - Siehe auch:
-
showHoverTimeIntervalLayerProperty
The showHoverTimeIntervalLayer property. Controls whether the hover time interval layer is shown.- Gibt zurück:
- the showHoverTimeIntervalLayer property
- Siehe auch:
-
setShowHoverTimeIntervalLayer
public final void setShowHoverTimeIntervalLayer(boolean show) Legt den Wert dershowHoverTimeIntervalLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showHoverTimeIntervalLayer property. Controls whether the hover time interval layer is shown.
- Parameter:
show- Wert für die EigenschaftshowHoverTimeIntervalLayer- Siehe auch:
-
isShowHoverTimeIntervalLayer
public final boolean isShowHoverTimeIntervalLayer()Ruft den Wert dershowHoverTimeIntervalLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showHoverTimeIntervalLayer property. Controls whether the hover time interval layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showHoverTimeIntervalLayer - Siehe auch:
-
showInnerLinesLayerProperty
The showInnerLinesLayer property. Controls whether the inner lines layer is shown.- Gibt zurück:
- the showInnerLinesLayer property
- Siehe auch:
-
setShowInnerLinesLayer
public final void setShowInnerLinesLayer(boolean show) Legt den Wert dershowInnerLinesLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showInnerLinesLayer property. Controls whether the inner lines layer is shown.
- Parameter:
show- Wert für die EigenschaftshowInnerLinesLayer- Siehe auch:
-
isShowInnerLinesLayer
public final boolean isShowInnerLinesLayer()Ruft den Wert dershowInnerLinesLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showInnerLinesLayer property. Controls whether the inner lines layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showInnerLinesLayer - Siehe auch:
-
showNowLineLayerProperty
The showNowLineLayer property. Controls whether the now line layer is shown.- Gibt zurück:
- the showNowLineLayer property
- Siehe auch:
-
setShowNowLineLayer
public final void setShowNowLineLayer(boolean show) Legt den Wert dershowNowLineLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showNowLineLayer property. Controls whether the now line layer is shown.
- Parameter:
show- Wert für die EigenschaftshowNowLineLayer- Siehe auch:
-
isShowNowLineLayer
public final boolean isShowNowLineLayer()Ruft den Wert dershowNowLineLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showNowLineLayer property. Controls whether the now line layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showNowLineLayer - Siehe auch:
-
showDSTLineLayerProperty
The showDSTLineLayer property. Controls whether the daylight saving time line layer is shown.- Gibt zurück:
- the showDSTLineLayer property
- Siehe auch:
-
setShowDSTLineLayer
public final void setShowDSTLineLayer(boolean show) Legt den Wert dershowDSTLineLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showDSTLineLayer property. Controls whether the daylight saving time line layer is shown.
- Parameter:
show- Wert für die EigenschaftshowDSTLineLayer- Siehe auch:
-
isShowDSTLineLayer
public final boolean isShowDSTLineLayer()Ruft den Wert dershowDSTLineLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showDSTLineLayer property. Controls whether the daylight saving time line layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showDSTLineLayer - Siehe auch:
-
showRowLayerProperty
The showRowLayer property. Controls whether the row layer is shown.- Gibt zurück:
- the showRowLayer property
- Siehe auch:
-
setShowRowLayer
public final void setShowRowLayer(boolean show) Legt den Wert dershowRowLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showRowLayer property. Controls whether the row layer is shown.
- Parameter:
show- Wert für die EigenschaftshowRowLayer- Siehe auch:
-
isShowRowLayer
public final boolean isShowRowLayer()Ruft den Wert dershowRowLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showRowLayer property. Controls whether the row layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showRowLayer - Siehe auch:
-
showSelectedTimeIntervalsLayerProperty
The showSelectedTimeIntervalsLayer property. Controls whether the selected time intervals layer is shown.- Gibt zurück:
- the showSelectedTimeIntervalsLayer property
- Siehe auch:
-
setShowSelectedTimeIntervalsLayer
public final void setShowSelectedTimeIntervalsLayer(boolean show) Legt den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showSelectedTimeIntervalsLayer property. Controls whether the selected time intervals layer is shown.
- Parameter:
show- Wert für die EigenschaftshowSelectedTimeIntervalsLayer- Siehe auch:
-
isShowSelectedTimeIntervalsLayer
public final boolean isShowSelectedTimeIntervalsLayer()Ruft den Wert dershowSelectedTimeIntervalsLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showSelectedTimeIntervalsLayer property. Controls whether the selected time intervals layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showSelectedTimeIntervalsLayer - Siehe auch:
-
showZoomTimeIntervalLayerProperty
The showZoomTimeIntervalLayer property. Controls whether the zoom time interval layer is shown.- Gibt zurück:
- the showZoomTimeIntervalLayer property
- Siehe auch:
-
setShowZoomTimeIntervalLayer
public final void setShowZoomTimeIntervalLayer(boolean show) Legt den Wert dershowZoomTimeIntervalLayer-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showZoomTimeIntervalLayer property. Controls whether the zoom time interval layer is shown.
- Parameter:
show- Wert für die EigenschaftshowZoomTimeIntervalLayer- Siehe auch:
-
isShowZoomTimeIntervalLayer
public final boolean isShowZoomTimeIntervalLayer()Ruft den Wert dershowZoomTimeIntervalLayer-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showZoomTimeIntervalLayer property. Controls whether the zoom time interval layer is shown.
- Gibt zurück:
- Wert der Eigenschaft
showZoomTimeIntervalLayer - Siehe auch:
-
showZoneIdProperty
The showZoneId property. Controls whether row time zone identifiers are shown.- Gibt zurück:
- the showZoneId property
- Siehe auch:
-
setShowZoneId
public final void setShowZoneId(boolean show) Legt den Wert dershowZoneId-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The showZoneId property. Controls whether row time zone identifiers are shown.
- Parameter:
show- Wert für die EigenschaftshowZoneId- Siehe auch:
-
isShowZoneId
public final boolean isShowZoneId()Ruft den Wert dershowZoneId-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The showZoneId property. Controls whether row time zone identifiers are shown.
- Gibt zurück:
- Wert der Eigenschaft
showZoneId - Siehe auch:
-
fadeInOutVisibilityChangesProperty
The fadeInOutVisibilityChanges property. Controls whether visibility changes are animated with fade transitions.- Gibt zurück:
- the fadeInOutVisibilityChanges property
- Siehe auch:
-
isFadeInOutVisibilityChanges
public final boolean isFadeInOutVisibilityChanges()Ruft den Wert derfadeInOutVisibilityChanges-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The fadeInOutVisibilityChanges property. Controls whether visibility changes are animated with fade transitions.
- Gibt zurück:
- Wert der Eigenschaft
fadeInOutVisibilityChanges - Siehe auch:
-
setFadeInOutVisibilityChanges
public final void setFadeInOutVisibilityChanges(boolean show) Legt den Wert derfadeInOutVisibilityChanges-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The fadeInOutVisibilityChanges property. Controls whether visibility changes are animated with fade transitions.
- Parameter:
show- Wert für die EigenschaftfadeInOutVisibilityChanges- Siehe auch:
-
fadeInOutVisibilityChangesDurationProperty
The fadeInOutVisibilityChangesDuration property. Controls the duration of fade transitions used for visibility changes.- Gibt zurück:
- the fadeInOutVisibilityChangesDuration property
- Siehe auch:
-
getFadeInOutVisibilityChangesDuration
public final double getFadeInOutVisibilityChangesDuration()Ruft den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The fadeInOutVisibilityChangesDuration property. Controls the duration of fade transitions used for visibility changes.
- Gibt zurück:
- Wert der Eigenschaft
fadeInOutVisibilityChangesDuration - Siehe auch:
-
setFadeInOutVisibilityChangesDuration
public final void setFadeInOutVisibilityChangesDuration(double duration) Legt den Wert derfadeInOutVisibilityChangesDuration-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The fadeInOutVisibilityChangesDuration property. Controls the duration of fade transitions used for visibility changes.
- Parameter:
duration- Wert für die EigenschaftfadeInOutVisibilityChangesDuration- Siehe auch:
-
isShowLinks
public final boolean isShowLinks()Ruft den Wert dershowLinks-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Controls whether the
LinksCanvaswill be visible and links will be drawn. - Gibt zurück:
- Wert der Eigenschaft
showLinks - Siehe auch:
-
showLinksProperty
Controls whether theLinksCanvaswill be visible and links will be drawn.- Gibt zurück:
- true if the links will be drawn
- Siehe auch:
-
setShowLinks
public final void setShowLinks(boolean showLinks) Legt den Wert dershowLinks-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Controls whether the
LinksCanvaswill be visible and links will be drawn. - Parameter:
showLinks- Wert für die EigenschaftshowLinks- Siehe auch:
-
dragAndDropFeedbackProperty
The dragAndDropFeedback property. Controls how drag and drop feedback is rendered.- Gibt zurück:
- the dragAndDropFeedback property
- Siehe auch:
-
setDragAndDropFeedback
Legt den Wert derdragAndDropFeedback-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The dragAndDropFeedback property. Controls how drag and drop feedback is rendered.
- Parameter:
feedback- Wert für die EigenschaftdragAndDropFeedback- Siehe auch:
-
getDragAndDropFeedback
Ruft den Wert derdragAndDropFeedback-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The dragAndDropFeedback property. Controls how drag and drop feedback is rendered.
- Gibt zurück:
- Wert der Eigenschaft
dragAndDropFeedback - Siehe auch:
-
rowControlsFactoryProperty
public final ObjectProperty<Callback<GraphicsBase.RowControlsParameter<R>, Node>> rowControlsFactoryProperty()The rowControlsFactory property. Stores the factory used to create row control nodes.- Gibt zurück:
- the rowControlsFactory property
- Siehe auch:
-
setRowControlsFactory
public final void setRowControlsFactory(Callback<GraphicsBase.RowControlsParameter<R>, Node> factory) Legt den Wert derrowControlsFactory-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The rowControlsFactory property. Stores the factory used to create row control nodes.
- Parameter:
factory- Wert für die EigenschaftrowControlsFactory- Siehe auch:
-
getRowControlsFactory
Ruft den Wert derrowControlsFactory-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The rowControlsFactory property. Stores the factory used to create row control nodes.
- Gibt zurück:
- Wert der Eigenschaft
rowControlsFactory - Siehe auch:
-
enableRowResizingProperty
Controls whether the view allows the user to interactively resize the row / change the row height.- Gibt zurück:
- true if the rows can be resized
- Seit:
- 11.12.0
- Siehe auch:
-
isEnableRowResizing
public final boolean isEnableRowResizing()Ruft den Wert derenableRowResizing-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Controls whether the view allows the user to interactively resize the row / change the row height.
- Gibt zurück:
- Wert der Eigenschaft
enableRowResizing - Seit:
- 11.12.0
- Siehe auch:
-
setEnableRowResizing
public final void setEnableRowResizing(boolean enableRowResizing) Legt den Wert derenableRowResizing-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Controls whether the view allows the user to interactively resize the row / change the row height.
- Parameter:
enableRowResizing- Wert für die EigenschaftenableRowResizing- Seit:
- 11.12.0
- Siehe auch:
-
rowHeaderFactoryProperty
public final ObjectProperty<Callback<GraphicsBase<R>, GraphicsBase.RowHeader<R>>> rowHeaderFactoryProperty()A property used to store a callback for creating a node that will be placed to the left of each row in the graphics view.- Gibt zurück:
- the row header node callback property
- Seit:
- 11.11.0
- Siehe auch:
-
setRowHeaderFactory
Sets the value ofrowHeaderFactoryProperty().- Parameter:
factory- the factory used for creating the row header nodes- Seit:
- 11.11.0
-
getRowHeaderFactory
Returns the value ofrowHeaderFactoryProperty().- Gibt zurück:
- the row header nodes factory
- Seit:
- 11.11.0
-
showRowHeadersProperty
Determines if the row headers will be shown to the user or not.- Gibt zurück:
- true if the row headers will be visible
- Seit:
- 11.11.0
- Siehe auch:
-
isShowRowHeaders
public final boolean isShowRowHeaders()Ruft den Wert dershowRowHeaders-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Determines if the row headers will be shown to the user or not.
- Gibt zurück:
- Wert der Eigenschaft
showRowHeaders - Seit:
- 11.11.0
- Siehe auch:
-
setShowRowHeaders
public final void setShowRowHeaders(boolean showRowHeaders) Legt den Wert dershowRowHeaders-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Determines if the row headers will be shown to the user or not.
- Parameter:
showRowHeaders- Wert für die EigenschaftshowRowHeaders- Seit:
- 11.11.0
- Siehe auch:
-
rowHeadersWidthProperty
Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.- Gibt zurück:
- the width in pixels used for all row headers
- Seit:
- 11.11.0
- Siehe auch:
-
getRowHeadersWidth
public final double getRowHeadersWidth()Ruft den Wert derrowHeadersWidth-Eigenschaft ab.- Eigenschaftsbeschreibung:
- Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.
- Gibt zurück:
- Wert der Eigenschaft
rowHeadersWidth - Seit:
- 11.11.0
- Siehe auch:
-
setRowHeadersWidth
public final void setRowHeadersWidth(double rowHeadersWidth) Legt den Wert derrowHeadersWidth-Eigenschaft fest.- Eigenschaftsbeschreibung:
- Specifies the width of the so-called "row headers". These are custom nodes that can be placed in front of every row inside the graphics area. For proper layout the width of all row headers has to be the same.
- Parameter:
rowHeadersWidth- Wert für die EigenschaftrowHeadersWidth- Seit:
- 11.11.0
- Siehe auch:
-
rowEditorFactoryProperty
public final ObjectProperty<Callback<GraphicsBase.RowEditorParameter<R>, Node>> rowEditorFactoryProperty()The rowEditorFactory property. Stores the factory used to create row editor nodes.- Gibt zurück:
- the rowEditorFactory property
- Siehe auch:
-
setRowEditorFactory
Legt den Wert derrowEditorFactory-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The rowEditorFactory property. Stores the factory used to create row editor nodes.
- Parameter:
factory- Wert für die EigenschaftrowEditorFactory- Siehe auch:
-
getRowEditorFactory
Ruft den Wert derrowEditorFactory-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The rowEditorFactory property. Stores the factory used to create row editor nodes.
- Gibt zurück:
- Wert der Eigenschaft
rowEditorFactory - Siehe auch:
-
rowEditingModeProperty
The rowEditingMode property. Controls how many row editors can be shown at the same time.- Gibt zurück:
- the rowEditingMode property
- Siehe auch:
-
setRowEditingMode
Legt den Wert derrowEditingMode-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The rowEditingMode property. Controls how many row editors can be shown at the same time.
- Parameter:
mode- Wert für die EigenschaftrowEditingMode- Siehe auch:
-
getRowEditingMode
Ruft den Wert derrowEditingMode-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The rowEditingMode property. Controls how many row editors can be shown at the same time.
- Gibt zurück:
- Wert der Eigenschaft
rowEditingMode - Siehe auch:
-
getRowsEditing
Returns the rows that are currently showing a row editor.- Gibt zurück:
- the rows currently being edited
-
stopRowEditing
public final void stopRowEditing()Stops row editing for all rows. -
stopRowEditing
Stops row editing for the given row.- Parameter:
row- the row to stop editing
-
startRowEditing
Starts row editing for the given row.- Parameter:
row- the row to start editing
-
animateRowEditorProperty
The animateRowEditor property. Controls whether row editors are shown and hidden with animation.- Gibt zurück:
- the animateRowEditor property
- Siehe auch:
-
setAnimateRowEditor
public final void setAnimateRowEditor(boolean animate) Legt den Wert deranimateRowEditor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The animateRowEditor property. Controls whether row editors are shown and hidden with animation.
- Parameter:
animate- Wert für die EigenschaftanimateRowEditor- Siehe auch:
-
isAnimateRowEditor
public final boolean isAnimateRowEditor()Ruft den Wert deranimateRowEditor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The animateRowEditor property. Controls whether row editors are shown and hidden with animation.
- Gibt zurück:
- Wert der Eigenschaft
animateRowEditor - Siehe auch:
-
setEditModeCallback
public final void setEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType, Callback<GraphicsBase.EditModeCallbackParameter, GraphicsBase.EditMode> callback) -
getEditModeCallback
public final Callback<GraphicsBase.EditModeCallbackParameter, GraphicsBase.EditMode> getEditModeCallback(Class<? extends MutableActivity> activityType, Class<? extends Layout> layoutType) Returns the edit mode callback registered for the given activity and layout types.- Parameter:
activityType- the activity typelayoutType- the layout type- Gibt zurück:
- the matching edit mode callback, or
nullif no callback is registered
-
dropLayerProviderProperty
public final ObjectProperty<Callback<GraphicsBase.DragAndDropInfo, Layer>> dropLayerProviderProperty()A property used to store a callback that will return the layer on which a dragged activity will be placed once the drop operation has finished. The default provider returns the layer on which the activity is currently shown.- Gibt zurück:
- a property used to store the drop layer provider
- Seit:
- 1.2
- Siehe auch:
-
getDropLayerProvider
Returns the value ofdropLayerProviderProperty().- Gibt zurück:
- the drop layer provider used for DnD operations
- Seit:
- 1.2
-
setDropLayerProvider
Sets the value ofdropLayerProviderProperty().- Parameter:
provider- the drop layer provider used for DnD operations- Seit:
- 1.2
-
horizontalDragEnabledProperty
Determines whether the user can perform a horizontal drag with a mouse drag.- Gibt zurück:
- true if the visible time range can be changed via a mouse drag
- Seit:
- 1.3
- Siehe auch:
-
setHorizontalDragEnabled
public final void setHorizontalDragEnabled(boolean enabled) Sets the value ofhorizontalDragEnabledProperty().- Parameter:
enabled- if true, the user can perform horizontal scrolling
-
isHorizontalDragEnabled
public final boolean isHorizontalDragEnabled()Returns the value ofhorizontalDragEnabledProperty().- Gibt zurück:
- true if the user can perform horizontal scrolling
-
safeRenderingProperty
Returns the property that specifies whether the various canvas API-based rendering parts inside this framework will always callGraphicsContext.save()to save the current state of the context before changing its state (followed byGraphicsContext.restore()to restore the old state).Using save / restore will ensure that the pluggable system layers and activity renderers will not have any side effects on each other. Setting this property to true has an impact on performance. The default value of this property is false.
Example
The following code shows how the property is used within the framework.GraphicsContext gc = canvas.getGraphicsContext2D(); if (graphics.isSafeRendering()) { gc.save(); } gc.setTransform(...); gc.strokeLine(...); if (graphics.isSafeRendering()) { gc.restore(); }- Gibt zurück:
- the property to control safe rendering
- Siehe auch:
-
setSafeRendering
public final void setSafeRendering(boolean safe) Sets the value ofsafeRenderingProperty().- Parameter:
safe- if true, the safe rendering mode will be used (the graphics context state will be saved before invoking renderers or drawing system layers).
-
isSafeRendering
public final boolean isSafeRendering()Returns the value ofsafeRenderingProperty().- Gibt zurück:
- "true" if the safe rendering mode will be used (the graphics context state will be saved before invoking renderers or drawing system layers).
-
gridLineColor1Property
The gridLineColor1 property. Stores the paint used for first-level grid lines.- Gibt zurück:
- the gridLineColor1 property
- Siehe auch:
-
getGridLineColor1
Ruft den Wert dergridLineColor1-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The gridLineColor1 property. Stores the paint used for first-level grid lines.
- Gibt zurück:
- Wert der Eigenschaft
gridLineColor1 - Siehe auch:
-
setGridLineColor1
Legt den Wert dergridLineColor1-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The gridLineColor1 property. Stores the paint used for first-level grid lines.
- Parameter:
color- Wert für die EigenschaftgridLineColor1- Siehe auch:
-
gridLineColor2Property
The gridLineColor2 property. Stores the paint used for second-level grid lines.- Gibt zurück:
- the gridLineColor2 property
- Siehe auch:
-
getGridLineColor2
Ruft den Wert dergridLineColor2-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The gridLineColor2 property. Stores the paint used for second-level grid lines.
- Gibt zurück:
- Wert der Eigenschaft
gridLineColor2 - Siehe auch:
-
setGridLineColor2
Legt den Wert dergridLineColor2-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The gridLineColor2 property. Stores the paint used for second-level grid lines.
- Parameter:
color- Wert für die EigenschaftgridLineColor2- Siehe auch:
-
gridLineColor3Property
The gridLineColor3 property. Stores the paint used for third-level grid lines.- Gibt zurück:
- the gridLineColor3 property
- Siehe auch:
-
getGridLineColor3
Ruft den Wert dergridLineColor3-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The gridLineColor3 property. Stores the paint used for third-level grid lines.
- Gibt zurück:
- Wert der Eigenschaft
gridLineColor3 - Siehe auch:
-
setGridLineColor3
Legt den Wert dergridLineColor3-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The gridLineColor3 property. Stores the paint used for third-level grid lines.
- Parameter:
color- Wert für die EigenschaftgridLineColor3- Siehe auch:
-
weekendColorProperty
The weekendColor property. Stores the paint used to render weekend background areas.- Gibt zurück:
- the weekendColor property
- Siehe auch:
-
getWeekendColor
Ruft den Wert derweekendColor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The weekendColor property. Stores the paint used to render weekend background areas.
- Gibt zurück:
- Wert der Eigenschaft
weekendColor - Siehe auch:
-
setWeekendColor
Legt den Wert derweekendColor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The weekendColor property. Stores the paint used to render weekend background areas.
- Parameter:
color- Wert für die EigenschaftweekendColor- Siehe auch:
-
weekendOpacityProperty
The weekendOpacity property. Controls the opacity used when rendering weekend background areas.- Gibt zurück:
- the weekendOpacity property
- Siehe auch:
-
getWeekendOpacity
public final double getWeekendOpacity()Ruft den Wert derweekendOpacity-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The weekendOpacity property. Controls the opacity used when rendering weekend background areas.
- Gibt zurück:
- Wert der Eigenschaft
weekendOpacity - Siehe auch:
-
setWeekendOpacity
public final void setWeekendOpacity(double opacity) Legt den Wert derweekendOpacity-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The weekendOpacity property. Controls the opacity used when rendering weekend background areas.
- Parameter:
opacity- Wert für die EigenschaftweekendOpacity- Siehe auch:
-
timeNowColorProperty
The timeNowColor property. Stores the paint used to render the current time indicator.- Gibt zurück:
- the timeNowColor property
- Siehe auch:
-
getTimeNowColor
Ruft den Wert dertimeNowColor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The timeNowColor property. Stores the paint used to render the current time indicator.
- Gibt zurück:
- Wert der Eigenschaft
timeNowColor - Siehe auch:
-
setTimeNowColor
Legt den Wert dertimeNowColor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The timeNowColor property. Stores the paint used to render the current time indicator.
- Parameter:
color- Wert für die EigenschafttimeNowColor- Siehe auch:
-
innerLinesColorProperty
The innerLinesColor property. Stores the paint used to render inner row lines.- Gibt zurück:
- the innerLinesColor property
- Siehe auch:
-
getInnerLinesColor
Ruft den Wert derinnerLinesColor-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The innerLinesColor property. Stores the paint used to render inner row lines.
- Gibt zurück:
- Wert der Eigenschaft
innerLinesColor - Siehe auch:
-
setInnerLinesColor
Legt den Wert derinnerLinesColor-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The innerLinesColor property. Stores the paint used to render inner row lines.
- Parameter:
color- Wert für die EigenschaftinnerLinesColor- Siehe auch:
-
getActivityFill
Ruft den Wert deractivityFill-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityFill property. Stores the fill color used to render activities in their normal state.
- Gibt zurück:
- Wert der Eigenschaft
activityFill - Siehe auch:
-
setActivityFill
Legt den Wert deractivityFill-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityFill property. Stores the fill color used to render activities in their normal state.
- Parameter:
value- Wert für die EigenschaftactivityFill- Siehe auch:
-
activityFillProperty
The activityFill property. Stores the fill color used to render activities in their normal state.- Gibt zurück:
- the activityFill property
- Siehe auch:
-
getActivityStroke
Ruft den Wert deractivityStroke-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityStroke property. Stores the stroke color used to render activities in their normal state.
- Gibt zurück:
- Wert der Eigenschaft
activityStroke - Siehe auch:
-
setActivityStroke
Legt den Wert deractivityStroke-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityStroke property. Stores the stroke color used to render activities in their normal state.
- Parameter:
value- Wert für die EigenschaftactivityStroke- Siehe auch:
-
activityStrokeProperty
The activityStroke property. Stores the stroke color used to render activities in their normal state.- Gibt zurück:
- the activityStroke property
- Siehe auch:
-
getActivityPressed
Ruft den Wert deractivityPressed-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityPressed property. Stores the fill color used to render pressed activities.
- Gibt zurück:
- Wert der Eigenschaft
activityPressed - Siehe auch:
-
setActivityPressed
Legt den Wert deractivityPressed-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityPressed property. Stores the fill color used to render pressed activities.
- Parameter:
value- Wert für die EigenschaftactivityPressed- Siehe auch:
-
activityPressedProperty
The activityPressed property. Stores the fill color used to render pressed activities.- Gibt zurück:
- the activityPressed property
- Siehe auch:
-
getActivityHighlight
Ruft den Wert deractivityHighlight-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityHighlight property. Stores the fill color used to render highlighted activities.
- Gibt zurück:
- Wert der Eigenschaft
activityHighlight - Siehe auch:
-
setActivityHighlight
Legt den Wert deractivityHighlight-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityHighlight property. Stores the fill color used to render highlighted activities.
- Parameter:
value- Wert für die EigenschaftactivityHighlight- Siehe auch:
-
activityHighlightProperty
The activityHighlight property. Stores the fill color used to render highlighted activities.- Gibt zurück:
- the activityHighlight property
- Siehe auch:
-
getActivitySelected
Ruft den Wert deractivitySelected-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activitySelected property. Stores the fill color used to render selected activities.
- Gibt zurück:
- Wert der Eigenschaft
activitySelected - Siehe auch:
-
setActivitySelected
Legt den Wert deractivitySelected-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activitySelected property. Stores the fill color used to render selected activities.
- Parameter:
value- Wert für die EigenschaftactivitySelected- Siehe auch:
-
activitySelectedProperty
The activitySelected property. Stores the fill color used to render selected activities.- Gibt zurück:
- the activitySelected property
- Siehe auch:
-
getActivityHover
Ruft den Wert deractivityHover-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityHover property. Stores the fill color used to render hovered activities.
- Gibt zurück:
- Wert der Eigenschaft
activityHover - Siehe auch:
-
setActivityHover
Legt den Wert deractivityHover-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityHover property. Stores the fill color used to render hovered activities.
- Parameter:
value- Wert für die EigenschaftactivityHover- Siehe auch:
-
activityHoverProperty
The activityHover property. Stores the fill color used to render hovered activities.- Gibt zurück:
- the activityHover property
- Siehe auch:
-
getActivityStrokePressed
Ruft den Wert deractivityStrokePressed-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityStrokePressed property. Stores the stroke color used to render pressed activities.
- Gibt zurück:
- Wert der Eigenschaft
activityStrokePressed - Siehe auch:
-
setActivityStrokePressed
Legt den Wert deractivityStrokePressed-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityStrokePressed property. Stores the stroke color used to render pressed activities.
- Parameter:
value- Wert für die EigenschaftactivityStrokePressed- Siehe auch:
-
activityStrokePressedProperty
The activityStrokePressed property. Stores the stroke color used to render pressed activities.- Gibt zurück:
- the activityStrokePressed property
- Siehe auch:
-
getActivityStrokeHighlight
Ruft den Wert deractivityStrokeHighlight-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityStrokeHighlight property. Stores the stroke color used to render highlighted activities.
- Gibt zurück:
- Wert der Eigenschaft
activityStrokeHighlight - Siehe auch:
-
setActivityStrokeHighlight
Legt den Wert deractivityStrokeHighlight-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityStrokeHighlight property. Stores the stroke color used to render highlighted activities.
- Parameter:
value- Wert für die EigenschaftactivityStrokeHighlight- Siehe auch:
-
activityStrokeHighlightProperty
The activityStrokeHighlight property. Stores the stroke color used to render highlighted activities.- Gibt zurück:
- the activityStrokeHighlight property
- Siehe auch:
-
getActivityStrokeSelected
Ruft den Wert deractivityStrokeSelected-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityStrokeSelected property. Stores the stroke color used to render selected activities.
- Gibt zurück:
- Wert der Eigenschaft
activityStrokeSelected - Siehe auch:
-
setActivityStrokeSelected
Legt den Wert deractivityStrokeSelected-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityStrokeSelected property. Stores the stroke color used to render selected activities.
- Parameter:
value- Wert für die EigenschaftactivityStrokeSelected- Siehe auch:
-
activityStrokeSelectedProperty
The activityStrokeSelected property. Stores the stroke color used to render selected activities.- Gibt zurück:
- the activityStrokeSelected property
- Siehe auch:
-
getActivityStrokeHover
Ruft den Wert deractivityStrokeHover-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityStrokeHover property. Stores the stroke color used to render hovered activities.
- Gibt zurück:
- Wert der Eigenschaft
activityStrokeHover - Siehe auch:
-
setActivityStrokeHover
Legt den Wert deractivityStrokeHover-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityStrokeHover property. Stores the stroke color used to render hovered activities.
- Parameter:
value- Wert für die EigenschaftactivityStrokeHover- Siehe auch:
-
activityStrokeHoverProperty
The activityStrokeHover property. Stores the stroke color used to render hovered activities.- Gibt zurück:
- the activityStrokeHover property
- Siehe auch:
-
getActivityTextFill
Ruft den Wert deractivityTextFill-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityTextFill property. Stores the text fill used to render activities in their normal state.
- Gibt zurück:
- Wert der Eigenschaft
activityTextFill - Siehe auch:
-
setActivityTextFill
Legt den Wert deractivityTextFill-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityTextFill property. Stores the text fill used to render activities in their normal state.
- Parameter:
value- Wert für die EigenschaftactivityTextFill- Siehe auch:
-
activityTextFillProperty
The activityTextFill property. Stores the text fill used to render activities in their normal state.- Gibt zurück:
- the activityTextFill property
- Siehe auch:
-
getActivityTextFillHover
Ruft den Wert deractivityTextFillHover-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityTextFillHover property. Stores the text fill used to render hovered activities.
- Gibt zurück:
- Wert der Eigenschaft
activityTextFillHover - Siehe auch:
-
setActivityTextFillHover
Legt den Wert deractivityTextFillHover-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityTextFillHover property. Stores the text fill used to render hovered activities.
- Parameter:
value- Wert für die EigenschaftactivityTextFillHover- Siehe auch:
-
activityTextFillHoverProperty
The activityTextFillHover property. Stores the text fill used to render hovered activities.- Gibt zurück:
- the activityTextFillHover property
- Siehe auch:
-
getActivityTextFillHighlight
Ruft den Wert deractivityTextFillHighlight-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityTextFillHighlight property. Stores the text fill used to render highlighted activities.
- Gibt zurück:
- Wert der Eigenschaft
activityTextFillHighlight - Siehe auch:
-
setActivityTextFillHighlight
Legt den Wert deractivityTextFillHighlight-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityTextFillHighlight property. Stores the text fill used to render highlighted activities.
- Parameter:
value- Wert für die EigenschaftactivityTextFillHighlight- Siehe auch:
-
activityTextFillHighlightProperty
The activityTextFillHighlight property. Stores the text fill used to render highlighted activities.- Gibt zurück:
- the activityTextFillHighlight property
- Siehe auch:
-
getActivityTextFillPressed
Ruft den Wert deractivityTextFillPressed-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityTextFillPressed property. Stores the text fill used to render pressed activities.
- Gibt zurück:
- Wert der Eigenschaft
activityTextFillPressed - Siehe auch:
-
setActivityTextFillPressed
Legt den Wert deractivityTextFillPressed-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityTextFillPressed property. Stores the text fill used to render pressed activities.
- Parameter:
value- Wert für die EigenschaftactivityTextFillPressed- Siehe auch:
-
activityTextFillPressedProperty
The activityTextFillPressed property. Stores the text fill used to render pressed activities.- Gibt zurück:
- the activityTextFillPressed property
- Siehe auch:
-
getActivityTextFillSelected
Ruft den Wert deractivityTextFillSelected-Eigenschaft ab.- Eigenschaftsbeschreibung:
- The activityTextFillSelected property. Stores the text fill used to render selected activities.
- Gibt zurück:
- Wert der Eigenschaft
activityTextFillSelected - Siehe auch:
-
setActivityTextFillSelected
Legt den Wert deractivityTextFillSelected-Eigenschaft fest.- Eigenschaftsbeschreibung:
- The activityTextFillSelected property. Stores the text fill used to render selected activities.
- Parameter:
value- Wert für die EigenschaftactivityTextFillSelected- Siehe auch:
-
activityTextFillSelectedProperty
The activityTextFillSelected property. Stores the text fill used to render selected activities.- Gibt zurück:
- the activityTextFillSelected property
- Siehe auch:
-
getClassCssMetaData
Returns the CSS metadata supported by this control class.- Gibt zurück:
- the supported CSS metadata
-
getControlCssMetaData
Returns the CSS metadata supported by this control instance.- Setzt außer Kraft:
getControlCssMetaDatain KlasseControl- Gibt zurück:
- the supported CSS metadata
-