Class MultiGanttChartContainer

  • All Implemented Interfaces:
    Styleable, EventTarget, Skinnable

    public class MultiGanttChartContainer
    extends MultiGanttChartContainerBase<GanttChart<?>>
    A container capable of displaying multiple instances of GanttChart and keeping their layouts (same table width, same timeline) and their scrolling and zooming behaviour in sync. The control utilizes a standard SplitPane for laying out the charts vertically.

    The screenshot below shows the initial appearance of an empty multi Gantt chart container.
    Multi Gantt Chart Container

    Since:
    1.0
    See Also:
    DualGanttChartContainer
    • Constructor Detail

      • MultiGanttChartContainer

        public MultiGanttChartContainer​(boolean autoBinding,
                                        GanttChart<?>... ganttCharts)
        Constructs a new container with the given Gantt chart controls.
        Parameters:
        autoBinding - if true many properties of the given controls will be bound to their equivalent of the Gantt chart on the first position
        ganttCharts - the Gantt charts to add to this container
        Since:
        1.0
      • MultiGanttChartContainer

        public MultiGanttChartContainer​(GanttChart<?>... ganttCharts)
        Constructs a new container with the given Gantt chart controls. The properties of the charts will be bound to the same properties of the Gantt chart on the first position.
        Parameters:
        ganttCharts - the Gantt charts to add to this container
        Since:
        1.0
      • MultiGanttChartContainer

        public MultiGanttChartContainer​(boolean autoBinding)
        Constructs a new empty container. Gantt charts must be added to the list returned by ContainerBase.getGanttCharts().
        Parameters:
        autoBinding - if true many properties of the given controls will be bound to their equivalent of the Gantt chart on the first position
        Since:
        1.0
      • MultiGanttChartContainer

        public MultiGanttChartContainer()
        Constructs a new container. Gantt charts must be added to the list returned by ContainerBase.getGanttCharts().The properties of the charts will be bound to the same properties of the Gantt chart on the first position.
        Since:
        1.0