mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
d44f404eae
* chore: improve sort api table scripts
* sort api
* add ignore
* Revert "sort api"
This reverts commit 343505d5f0
.
* sort api
* Update package.json
* sort api
* Delete sort-api.js
* sort api
* sort api
* sort api
* fix
* Update index.zh-CN.md
* fix input-number
* fix input-number
* sort func
* fix
* Method moved to the end
* carousel method
1.4 KiB
1.4 KiB
category | type | title | cover |
---|---|---|---|
Components | Data Display | Statistic | https://gw.alipayobjects.com/zos/antfincdn/rcBNhLBrKbE/Statistic.svg |
Display statistic number.
When To Use
- When want to highlight some data.
- When want to display statistic data with description.
API
Statistic
Property | Description | Type | Default | Version |
---|---|---|---|---|
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 | ReactNode | - | |
suffix | The suffix node of value | ReactNode | - | |
title | Display title | ReactNode | - | |
value | Display value | string | number | - | |
valueStyle | Set value css style | CSSProperties | - |
Statistic.Countdown
Property | Description | Type | Default | Version |
---|---|---|---|---|
format | Format as moment | 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 | moment | - | |
valueStyle | Set value css style | CSSProperties | - | |
onFinish | Trigger when time's up | () => void | - |