mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 15:59:38 +08:00
e7edfa42d7
* docs: update overview img * chore: code clean * chore: code clean * chore: update * chore: code clean
54 lines
2.3 KiB
Markdown
54 lines
2.3 KiB
Markdown
---
|
|
category: Components
|
|
group: Data Display
|
|
title: Statistic
|
|
cover: https://mdn.alipayobjects.com/huamei_7uahnr/afts/img/A*YL7PRYNtH-4AAAAAAAAAAAAADrJ8AQ/original
|
|
demo:
|
|
cols: 2
|
|
---
|
|
|
|
Display statistic number.
|
|
|
|
## When To Use
|
|
|
|
- When want to highlight some data.
|
|
- When want to display statistic data with description.
|
|
|
|
## Examples
|
|
|
|
<!-- prettier-ignore -->
|
|
<code src="./demo/basic.tsx">Basic</code>
|
|
<code src="./demo/unit.tsx">Unit</code>
|
|
<code src="./demo/card.tsx">In Card</code>
|
|
<code src="./demo/countdown.tsx">Countdown</code>
|
|
|
|
## API
|
|
|
|
#### Statistic
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
| ---------------- | ----------------------------- | -------------------- | ------- | ------- |
|
|
| decimalSeparator | The decimal separator | string | `.` | |
|
|
| formatter | Customize value display logic | (value) => ReactNode | - | |
|
|
| groupSeparator | Group separator | string | `,` | |
|
|
| loading | Loading status of Statistic | boolean | false | 4.8.0 |
|
|
| precision | The precision of input value | number | - | |
|
|
| prefix | The prefix node of value | ReactNode | - | |
|
|
| suffix | The suffix node of value | ReactNode | - | |
|
|
| title | Display title | ReactNode | - | |
|
|
| value | Display value | string \| number | - | |
|
|
| valueStyle | Set value section style | CSSProperties | - | |
|
|
|
|
#### Statistic.Countdown
|
|
|
|
| Property | Description | Type | Default | Version |
|
|
| --- | --- | --- | --- | --- |
|
|
| format | Format as [dayjs](https://day.js.org/) | string | `HH:mm:ss` | |
|
|
| prefix | The prefix node of value | ReactNode | - | |
|
|
| suffix | The suffix node of value | ReactNode | - | |
|
|
| title | Display title | ReactNode | - | |
|
|
| value | Set target countdown time | number \| dayjs | - | |
|
|
| valueStyle | Set value section style | CSSProperties | - | |
|
|
| onFinish | Trigger when time's up | () => void | - | |
|
|
| onChange | Trigger when time's changing | (value: number) => void | - | 4.16.0 |
|