2016-07-04 10:49:04 +08:00
|
|
|
---
|
|
|
|
category: Components
|
2016-11-09 14:43:32 +08:00
|
|
|
type: Data Display
|
2016-07-04 10:49:04 +08:00
|
|
|
title: Timeline
|
|
|
|
---
|
|
|
|
|
|
|
|
Vertical display timeline.
|
|
|
|
|
|
|
|
## When To Use
|
|
|
|
|
2017-12-27 17:54:12 +08:00
|
|
|
- When a series of information needs to be ordered by time (ascend or descend).
|
2016-11-29 17:13:24 +08:00
|
|
|
- When you need a timeline to make a visual connection.
|
2016-07-04 10:49:04 +08:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
<Timeline>
|
|
|
|
<Timeline.Item>step1 2015-09-01</Timeline.Item>
|
|
|
|
<Timeline.Item>step2 2015-09-01</Timeline.Item>
|
|
|
|
<Timeline.Item>step3 2015-09-01</Timeline.Item>
|
|
|
|
<Timeline.Item>step4 2015-09-01</Timeline.Item>
|
|
|
|
</Timeline>
|
|
|
|
```
|
|
|
|
|
|
|
|
### Timeline
|
|
|
|
|
|
|
|
Timeline
|
|
|
|
|
2017-10-25 10:25:44 +08:00
|
|
|
| Property | Description | Type | Default |
|
|
|
|
| -------- | ----------- | ---- | ------- |
|
|
|
|
| pending | Set the last ghost node's existence or its content | boolean\|string\|ReactNode | `false` |
|
2018-03-09 15:03:19 +08:00
|
|
|
| pendingDot | Set the dot of the last ghost node when pending is true | \|string\|ReactNode | `<Icon type="loading" />` |
|
2018-04-20 11:23:37 +08:00
|
|
|
| reverse | reverse nodes or not | boolean | false |
|
2018-07-28 00:25:23 +08:00
|
|
|
| mode | By sending `alternate` the timeline will distribute the nodes to the left and right. | `left` \| `alternate` \| `right` | `left` |
|
2016-07-04 10:49:04 +08:00
|
|
|
|
|
|
|
### Timeline.Item
|
|
|
|
|
|
|
|
Node of timeline
|
|
|
|
|
2017-10-25 10:25:44 +08:00
|
|
|
| Property | Description | Type | Default |
|
|
|
|
| -------- | ----------- | ---- | ------- |
|
|
|
|
| color | Set the circle's color to `blue`, `red`, `green` or other custom colors | string | `blue` |
|
|
|
|
| dot | Customize timeline dot | string\|ReactNode | - |
|