# react-gantt-antd-hzm

> A beautiful react gantt component with antd style. This is a fork of [JSainsburyPLC/react-timelines](https://github.com/JSainsburyPLC/react-timelines)

Latest version **1.0.26** (published 2020-05-31) · MIT license · 0 weekly downloads

## Install

```sh
npm install react-gantt-antd-hzm
pnpm add react-gantt-antd-hzm
yarn add react-gantt-antd-hzm
bun add react-gantt-antd-hzm
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.26 |
| Published | 2020-05-31 |
| First published | 2020-05-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 119.2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | icrdr |
| Maintainers | hzm131 |
| Keywords | timeline, schedule, history, react, gantt, horizontal, library, scroll, scss, sass, tracks, time |

## Links

- npm: https://www.npmjs.com/package/react-gantt-antd-hzm
- npm.io page: https://npm.io/package/react-gantt-antd-hzm

## Dependencies (1)

- [prop-types](https://npm.io/package/prop-types.md) ^15.7.2

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.26 (latest) — 2020-05-31
- 1.0.25 — 2020-05-31
- 1.0.24 — 2020-05-31
- 1.0.23 — 2020-05-31
- 1.0.22 — 2020-05-31
- 1.0.21 — 2020-05-31
- 1.0.20 — 2020-05-31
- 1.0.19 — 2020-05-31
- 1.0.18 — 2020-05-31
- 1.0.17 — 2020-05-31
- 1.0.16 — 2020-05-31
- 1.0.15 — 2020-05-31
- 1.0.14 — 2020-05-31
- 1.0.13 — 2020-05-31
- 1.0.12 — 2020-05-31
- … 4 more at https://npm.io/package/react-gantt-antd-hzm/versions

## README

# React-gantt-antd-hzm
A beautiful react gantt component with antd style.  
This is a fork of [JSainsburyPLC/react-timelines](https://github.com/JSainsburyPLC/react-timelines)  

![snapshot](https://github.com/icrdr/react-gantt-antd/raw/master/img/1.jpg)

## Install

```sh
yarn add react-gantt-antd-hzm
```
## Example

```js
import React from 'react'
import Gantt from 'react-gantt-antd-hzm'
import 'react-gantt-antd-hzm/lib/css/style.css'

export default function App() {
  const tasks_a = [
    {
      id: "title1",
      title: "任务名称",
      start: new Date('2020-06-01'),
      end: new Date('2020-08-02'),
    }
  ]

  const tasks_b = [
    {
      id: "title1",
      title: "任务名称",
      start: new Date('2020-07-01'),
      end: new Date('2020-09-02'),
    }
  ]

  const sub_projects = [
    {
      id: "sub_project1",
      title: "子项目",
      tasks: tasks_b,
    }
  ]

  const projects = [
    {
      id: "project1",
      title: "项目1",
      tasks: tasks_a,
      projects: sub_projects,
      isOpen: false,
    }
  ]
  return (
    <Gantt
      start={new Date('2020-06-01')}
      end={new Date('2020-10-01')}
      now={new Date('2020-7-01')}
      zoom={1}
      projects={projects}
      enableSticky
      scrollToNow
    />
  )
}

export default App
```
## API
### Gantt
| Property | value | default | Descriptions |
| :-----:| :----: | :----: | :---- |
| start | Date || The start date of the timeline |
| end | Date || The start date of the timeline |
| now | Date |new Date()| 'now' marker position |
| zoom | Number |1| The scale of the timeline width |
| projects | List |[]| The project list |
| minWidth | Number |120| The min width of the timeline when resizing the window |
| sideWidth | Number |400| The width of the sidebar |
| clickTask | function || when click task element |
| enableSticky | Bool |true| Determine whether the header is sticky or not |
| scrollToNow | Bool |true| Determine whether to scroll to the now marker at first or not |

### Project
| Property | value | default | Descriptions |
| :-----:| :----: | :----: | :---- |
| id | String/Number || The id of the Project |
| title | String/Element || The title of the Project |
| tasks | List || All the tasks of the Project |
| projects | List || All the sub projects of the Project |
| isOpen | Bool |false| Determine whether the project is folded  not |

### Task
| Property | value | default | Descriptions |
| :-----:| :----: | :----: | :---- |
| id | String/Number || The id of the Task |
| title | String/Element || The title of the Task |
| start | Date || The start date of the Task |
| end | Date || The start date of the Task |

## Development

```sh
yarn install
yarn watch
yarn build
```


```
npm config set registry=http://registry.npmjs.org
npm config set registry=https://registry.npm.taobao.org/
```

---
_Source: https://npm.io/package/react-gantt-antd-hzm · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
