2019-01-09 20:38:09 +08:00
|
|
|
---
|
|
|
|
category: Components
|
|
|
|
type: Data Display
|
|
|
|
title: Statistic
|
2020-05-31 11:48:34 +08:00
|
|
|
cover: https://gw.alipayobjects.com/zos/antfincdn/rcBNhLBrKbE/Statistic.svg
|
2019-01-09 20:38:09 +08:00
|
|
|
---
|
|
|
|
|
|
|
|
Display statistic number.
|
|
|
|
|
|
|
|
## When To Use
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
- When want to highlight some data.
|
|
|
|
- When want to display statistic data with description.
|
2019-01-09 20:38:09 +08:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
#### Statistic
|
|
|
|
|
2019-07-11 14:14:33 +08:00
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| ---------------- | ----------------------------- | -------------------- | ------- | ------- |
|
2020-07-02 09:52:28 +08:00
|
|
|
| decimalSeparator | The decimal separator | string | `.` | |
|
|
|
|
| formatter | Customize value display logic | (value) => ReactNode | - | |
|
|
|
|
| groupSeparator | Group separator | string | `,` | |
|
|
|
|
| precision | The precision of input value | number | - | |
|
|
|
|
| prefix | The prefix node of value | string \| ReactNode | - | |
|
|
|
|
| suffix | The suffix node of value | string \| ReactNode | - | |
|
2019-11-20 20:31:43 +08:00
|
|
|
| title | Display title | string \| ReactNode | - | |
|
|
|
|
| value | Display value | string \| number | - | |
|
2020-04-28 14:09:54 +08:00
|
|
|
| valueStyle | Set value css style | CSSProperties | - | |
|
2019-01-09 20:38:09 +08:00
|
|
|
|
|
|
|
#### Statistic.Countdown
|
|
|
|
|
2019-07-11 14:14:33 +08:00
|
|
|
| Property | Description | Type | Default | Version |
|
|
|
|
| --- | --- | --- | --- | --- |
|
2020-06-17 23:18:14 +08:00
|
|
|
| format | Format as [moment](http://momentjs.com/) | string | `HH:mm:ss` | |
|
2019-11-20 20:31:43 +08:00
|
|
|
| onFinish | Trigger when time's up | () => void | - | |
|
2020-07-02 09:52:28 +08:00
|
|
|
| prefix | The prefix node of value | string \| ReactNode | - | |
|
|
|
|
| suffix | The suffix node of value | string \| ReactNode | - | |
|
2019-11-20 20:31:43 +08:00
|
|
|
| title | Display title | string \| ReactNode | - | |
|
|
|
|
| value | Set target countdown time | number \| moment | - | |
|
2020-04-28 14:09:54 +08:00
|
|
|
| valueStyle | Set value css style | CSSProperties | - | |
|