Statistic 数值统计
展示统计数值。
何时使用
- 当需要突出某个或某组数字时。
- 当需要展示带描述的统计类数据时使用。
代码演示
基本
简单的展示。
import React from 'react';
import ReactDOM from 'react-dom';
import { Statistic, Row, Col, Button } from 'choerodon-ui';
ReactDOM.render(
<Row gutter={16}>
<Col span={12}>
<Statistic title="Active Users" value={112893} />
</Col>
<Col span={12}>
<Statistic title="Account Balance (CNY)" value={112893} precision={2} />
<Button style={{ marginTop: 16 }} type="primary">
Recharge
</Button>
</Col>
</Row>,
document.getElementById('container'),
);
在卡片中使用
在卡片中展示统计数值。
import React from 'react';
import ReactDOM from 'react-dom';
import { Statistic, Card, Row, Col, Icon } from 'choerodon-ui';
ReactDOM.render(
<div style={{ background: '#ececec', padding: '30px' }}>
<Row gutter={16}>
<Col span={12}>
<Card>
<Statistic
title="Active"
value={11.28}
precision={2}
valueStyle={{ color: '#3f8600' }}
prefix={<Icon type="backup-o" />}
suffix="%"
/>
</Card>
</Col>
<Col span={12}>
<Card>
<Statistic
title="Idle"
value={9.3}
precision={2}
valueStyle={{ color: '#cf1322' }}
prefix={<Icon type="cloud_download-o" />}
suffix="%"
/>
</Card>
</Col>
</Row>
</div>,
document.getElementById('container'),
);
倒计时组件
倒计时组件。
import React from 'react';
import ReactDOM from 'react-dom';
import { Statistic, Row, Col } from 'choerodon-ui';
const { Countdown } = Statistic;
const deadline = Date.now() + 1000 * 60 * 60 * 24 * 2 + 1000 * 30; // Moment is also OK
function onFinish() {
console.log('finished!');
}
ReactDOM.render(
<Row gutter={16}>
<Col span={12}>
<Countdown title="Countdown" value={deadline} onFinish={onFinish} />
</Col>
<Col span={12}>
<Countdown
title="Million Seconds"
value={deadline}
format="HH:mm:ss:SSS"
/>
</Col>
<Col span={24} style={{ marginTop: 32 }}>
<Countdown
title="Day Level"
value={deadline}
format="D 天 H 时 m 分 s 秒"
/>
</Col>
</Row>,
document.getElementById('container'),
);
单位
通过前缀和后缀添加单位。
import React from 'react';
import ReactDOM from 'react-dom';
import { Statistic, Row, Col, Icon } from 'choerodon-ui';
ReactDOM.render(
<div>
<Row gutter={16}>
<Col span={12}>
<Statistic
title="Feedback"
value={1128}
prefix={<Icon type="people_outline-o" />}
/>
</Col>
<Col span={12}>
<Statistic title="Unmerged" value={93} suffix="/ 100" />
</Col>
</Row>
</div>,
document.getElementById('container'),
);
API
Statistic
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
decimalSeparator | 设置小数点 | string | . | |
formatter | 自定义数值展示 | (value) => ReactNode | - | |
groupSeparator | 设置千分位标识符 | string | , | |
precision | 数值精度 | number | - | |
prefix | 设置数值的前缀 | string | ReactNode | - | |
suffix | 设置数值的后缀 | string | ReactNode | - | |
title | 数值的标题 | string | ReactNode | - | |
value | 数值内容 | string | number | - | |
valueStyle | 设置数值的样式 | CSSProperties | - |
Statistic.Countdown
参数 | 说明 | 类型 | 默认值 | 版本 |
---|---|---|---|---|
format | 格式化倒计时展示,参考 moment | string | HH:mm:ss | |
onFinish | 倒计时完成时触发 | () => void | - | |
prefix | 设置数值的前缀 | string | ReactNode | - | |
suffix | 设置数值的后缀 | string | ReactNode | - | |
title | 数值的标题 | string | ReactNode | - | |
value | 数值内容 | number | moment | - | |
valueStyle | 设置数值的样式 | CSSProperties | - |
当前内容版权归 Choerodon UI 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 Choerodon UI .