@fluidence/react-gantt
v1.0.10
Published
Highly versatile and performant, 2 in 1 Gantt and scheduler for React
Downloads
490
Maintainers
Readme
@fluidence/react-gantt
Highly versatile and performant, 2 in 1 Gantt and scheduler for React
Great for industrial production scheduling as well as regular project management.
Key Features
- Scheduler mode: Displays resources with scheduled tasks in each row
- Gantt mode: Displays tasks in collapsible, hierarchical rows
- Drag-and-drop: Horizontal for shifting tasks in time, and vertical for switching task resources (supports resource compatibility groups)
- Dependency arrows: finish-to-start, start-to-start, start-to-finish, finish-to-finish
- Relative times display: Time scale can be displayed as relative time from the start
- Continuous zoom level: Chart can be zoomed in up to 100x from the default zoom level
- Fit-to-window mode: Zoom level 1.0x with automatic time interval selection
- Saves UI state: Column widths, scroll position etc. can be saved and restored to/from the local storage or back-end server at reload
Install
$ npm install @fluidence/react-gantt
Usage
View scheduler mode demo online. View gantt mode demo online.
Simple example:
import Gantt from '@fluidence/react-gantt';
const columns = [
{
"text": "Resources",
}
];
const data = [
{
"id": 1,
"gridValues": ["Cleaner"],
"bars": [
{
"id": 1,
"text": "Clean Task",
"type": "Normal",
"startDate": "2023-03-24T02:30:00.000Z",
"endDate": "2023-03-24T04:00:00.000Z",
},
{
"id": 2,
"text": "Clean Task",
"type": "Normal",
"startDate": "2023-03-24T13:36:40.000Z",
"endDate": "2023-03-24T15:06:40.000Z",
},
],
},
{
"id": 2,
"gridValues": ["Filler"],
"bars": [
{
"id": 1,
"text": "Fill Task",
"type": "Normal",
"startDate": "2023-03-24T03:30:00.000Z",
"endDate": "2023-03-24T13:36:40.000Z",
},
],
"childRows": [
{
"gridValues": ["Filler tasks"],
"bars": [
{
"id": 1,
"text": "Task A",
"type": "Normal",
"startDate": "2023-03-24T03:30:00.000Z",
"endDate": "2023-03-24T12:06:40.000Z",
},
{
"id": 2,
"text": "Task B",
"type": "Normal",
"startDate": "2023-03-24T12:06:40.000Z",
"endDate": "2023-03-24T13:36:40.000Z",
},
]
}
]
},
]
return (
<Gantt
data={data}
columns={columns}
timeScale={"DayHour"}
/>
);
API
Unless otherwise stated each prop below is required
license: A valid license is required for the Gantt to work properly. The component will work in demo mode until a license is provided.
data (array): Chart row data. This array contains objects of the following format:
{
id (string): row identifier,
bars (array): row bars,
childRows (array): nested child rows, default: []
gridValues (array): grid column values, default: []
}
The bars array contains object of the following format:
{
id (string): bar identifier
text (string): bar display text,
type (string): the bar type, default: “Normal”,
possible values:
{“Normal”, “Background”, “Overlay”},
isDraggable (bool): can this bar be dragged, default: false,
startDate (date object or date string): bar start,
endDate (date object or date string): bar end,
barStyle (object): inline bar styling, default: {},
format:
{
borderWidth (number): bar border, default: 1,
borderStyle (string): border style, default: “solid”,
borderColor (string): border color, default: “black”,
borderRadius (string): border radius, default: “0px”,
backgroundColor (string): background color, default: “orange”,
color (string): foreground color, default: “white”,
cursor (string): bar cursor, default: “default”
}
}
arrows (array): Chart dependency arrows, default: []
. This array contains objects of the following format:
{
sourceBarId (number): the source bar id,
sourceEdge (string): arrow starts at start or finish of source bar,
possible values: {“S”, “F”},
destinationBarId (number): the destination bar id,
destinationEdge (string): arrow ends at the start or finish of destination bar,
possible values: {“S”, “F”}.
}
chartStart (date object | date string): Chart start date, default: minimum bar start date
.
chartEnd (date object | date string): Chart end date, default: maximum bar end date
.
showRelativeTime (bool): Displays times and time scale relative to the chart start, default: false
(i.e. absolute times).
useUTC (bool): Displays UTC times, default: false
(i.e. local times).
columns (array): The grid columns. An array of objects of the following format:
{
text (string): column header text,
minWidth (number): minimum column width,
default: 0,
defaultWidth (number): the default/initial column width if
widths.columnWidths array
is not provided (see below)
}
widths (object): The grid columns widths. This is normally used to save/load column widths to the local storage or the application back end and set to a ref value initialized as an empty object. The updateWidths function (see below) updates the ref whenever columns are resized by the user without causing a render. Please see the demos for sample code. The widths object is in the following format:
{
columnWidths (array): initial grid column widths for using when persisting
column widths to the local storage or the application
backend. Column widths override the default widths specified
in the columns array above. If you want to persist column
widths without providing initial widths, you can initialize
this value to an empty array,
gridWidth (number): the initial grid area width
}
updateWidths (function(widthInfo)): A function accepting a widthInfo object, executing when either a column width or grid width changes. The widthInfo object includes the following:
columnWidths (array): the widths of each displayed column,
gridWidth (number): the width of the grid
Both can be saved in a ref and persisted in the local storage or the application back end. When the page is refreshed, the persisted values should be passed to the widths prop.
rowStatus (object dictionary): Holds row expanded information. Each key corresponds to the id of the row and each value corresponds to the status of the row. The dictionary value is an object of the following format:
{
isExpanded (bool): row is expanded
}
updateRowStatus (function({})): A function accepting an object dictionary with rowStatus values, executed when the row expanded status changes. This object can be saved in a ref and persisted in the local storage or the application back end. When the page is refreshed, the persisted value should be passed to the rowStatus prop.
maxHeight (number): The maximum height the chart can occupy, default: unbounded
.
scrollLeft (number): The scrollbar left offset, default: 0
.
updateScrollLeft (function(number)): A function accepting Updates the scrollLeft.
barHeight (number): The bar height excluding any vertical padding, default: 35px
.
rowVerticalPadding (number): The padding above and below each row, default: 8
.
viewScale (number): The scaling of the area of the chart that hosts the bars where scaling x1 corresponds to viewScale = 100, default: 100
.
fitToWindow (bool): Allows the main area of the chart to scale so that it can fit the entire dataset in the viewable area, default: false
.
timeScale (string): The time scale for the horizontal axis. Consist of two rows: the first row displays the primary interval and the second row displays the secondary interval. The available options are:
{
“HourTenmin”,
“DayHour”,
“WeekDay”,
“MonthWeek”,
“YearMonth”
}
showPrimaryGridlines (bool): Enables primary grid lines, default: false
.
showSecondaryGridlines (bool): Enables secondary grid lines, default: false
.
handleBarClick (function(barClickInfo)): A function accepting a barClickInfo object, executing when any bar in the main area is clicked. The barClickInfo object includes the following:
bar (object): bar object,
row (object): row object,
clickDate (date): the chart clicked date on the horizontal axis.
clickDate helps with determining clicked bars
of lower z index,
event: low-level javascript event fired when clicking the bar
handleBarRightClick (function(barRightClickInfo)): A function accepting a barRightClickInfo object, executing when any bar in the main area is right-clicked. The barRightClickInfo object includes the following:
bar (object): bar object,
row (object): row object,
clickDate (date): the chart clicked date on the horizontal axis.
clickDate helps with determining clicked bars
of lower z index,
event: low-level javascript event fired when clicking the bar
handleRowClick (function(row)): A function accepting a row parameter, executing when the first grid column of a row is clicked. Returns the row object for that row.
handleBarDrop (function(dropInfo)): A function accepting a dropInfo object, executing when a bar is dropped into a new row. The dropInfo object includes the following:
{
initialPositionX: initial bar time,
finalPositionX: final bar time,
initialRow: initial bar row,
finalRow: final bar row,
bar: the bar object
}
CSS classes
A list of the css classes that determine the styles of the various chart elements along with their default values. The classes can be overridden to change the look-and-feel of the chart:
.gantt-container {
font-family: sans-serif;
}
.grid {
background: #81b299;
}
.grid-header-cell {
color: #fff;
border-color: #fff;
font-weight: bold;
font-size: 14px;
}
.grid-contents-cell {
color: #fff;
border-color: #fff;
font-size: 12px;
}
.bar-chart {
background: #f9f9f9;
}
.bar-chart-row {
border-color: #fff;
background: #d0e0f2;
font-size: 12px;
}
.bar-chart-grid-primary-gridline {
border-color: #fff;
}
.bar-chart-grid-secondary-gridline {
border-color: #fff;
}
.backdrop-bar {
color: #000000;
}
.normal-bar {
color: #000000;
}
.overlay-bar {
color: #000000;
}
.bar-chart-header-row {
background: #f3f1de;
}
.bar-chart-primary-header-row-entry {
border-color: #fff;
font-size: 14px;
font-weight: bold;
color: #777;
}
.bar-chart-secondary-header-row-entry {
border-color: #fff;
font-size: 12px;
font-weight: normal;
color: #777;
}
.gantt-legend {
padding: 10px;
font-size: 14px;
line-height: 2;
background: #f9f9f9;
}
Report an issue
License
This version of @fluidence/react-gantt is distributed under GPL 3.0 license and can be legally used in GPL projects. To use @fluidence/react-gantt in non-GPL projects, please obtain Perpetual license by contacting us at [email protected]