index.md 5.37 KB
Newer Older
nikogu's avatar
nikogu committed
1 2 3
---
title: Charts
subtitle: 图表
nikogu's avatar
nikogu committed
4
order: 2
nikogu's avatar
nikogu committed
5
cols: 2
nikogu's avatar
nikogu committed
6 7 8 9
---

Ant Design Pro 提供的业务中常用的图表类型,都是基于 [G2](https://antv.alipay.com/g2/doc/index.html) 按照 Ant Design 图表规范封装,需要注意的是 Ant Design Pro 的图表组件以套件形式提供,可以任意组合实现复杂的业务需求。

afc163's avatar
afc163 committed
10
因为结合了 Ant Design 的标准设计,本着极简的设计思想以及开箱即用的理念,简化了大量 API 配置,所以如果需要灵活定制图表,可以参考 Ant Design Pro 图表实现,自行基于 [G2](https://antv.alipay.com/g2/doc/index.html) 封装图表组件使用。
nikogu's avatar
nikogu committed
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27

## API

### ChartCard

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| title | 卡片标题 | ReactNode\|string | - |
| action | 卡片操作 | ReactNode | - |
| total | 数据总量 | ReactNode \| number | - |
| footer | 卡片底部 | ReactNode | - |
| contentHeight | 内容区域高度 | number | - |

### MiniBar

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
afc163's avatar
afc163 committed
28
| color | 图表颜色 | string | `#1890FF` |
nikogu's avatar
nikogu committed
29 30 31 32 33 34 35
| height | 图表高度 | number | - |
| data | 数据 | array<{x, y}> | - |

### MiniArea

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
nikogu's avatar
nikogu committed
36
| color | 图表颜色 | string | `rgba(24, 144, 255, 0.2)` |
afc163's avatar
afc163 committed
37
| borderColor | 图表边颜色 | string | `#1890FF` |
nikogu's avatar
nikogu committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
| height | 图表高度 | number | - |
| line | 是否显示描边 | boolean | false |
| animate | 是否显示动画 | boolean | true |
| xAxis | [x 轴配置](https://antv.alipay.com/g2/doc/tutorial/start/axis.html) | object | - |
| yAxis | [y 轴配置](https://antv.alipay.com/g2/doc/tutorial/start/axis.html) | object | - |
| data | 数据 | array<{x, y}> | - |

### MiniProgress

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| target | 目标比例 | number | - |
| color | 进度条颜色 | string | - |
| strokeWidth | 进度条高度 | number | - |
| percent | 进度比例 | number | - |

### Bar

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| title | 图表标题 | ReactNode\|string | - |
afc163's avatar
Fix pie  
afc163 committed
59
| color | 图表颜色 | string | `rgba(24, 144, 255, 0.85)` |
nikogu's avatar
nikogu committed
60 61 62 63 64 65 66 67 68
| margin | 图表内部间距 | array | \[32, 0, 32, 40\] |
| height | 图表高度 | number | - |
| data | 数据 | array<{x, y}> | - |

### Pie

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| animate | 是否显示动画 | boolean | true |
afc163's avatar
Fix pie  
afc163 committed
69
| color | 图表颜色 | string | `rgba(24, 144, 255, 0.85)` |
nikogu's avatar
nikogu committed
70 71
| height | 图表高度 | number | - |
| hasLegend | 是否显示 legend | boolean | `false` |
nikogu's avatar
nikogu committed
72
| margin | 图表内部间距 | array | \[24, 0, 24, 0\] |
nikogu's avatar
nikogu committed
73 74 75 76 77 78 79 80 81 82 83 84
| percent | 占比 | number | - |
| tooltip | 是否显示 tooltip | boolean | true |
| valueFormat | 显示值的格式化函数 | function | - |
| subTitle | 图表子标题 | ReactNode\|string | - |

### Radar

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| title | 图表标题 | ReactNode\|string | - |
| height | 图表高度 | number | - |
| hasLegend | 是否显示 legend | boolean | `false` |
nikogu's avatar
nikogu committed
85
| margin | 图表内部间距 | array | \[24, 30, 16, 30\] |
nikogu's avatar
nikogu committed
86 87 88 89 90 91 92

### Gauge

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| title | 图表标题 | ReactNode\|string | - |
| height | 图表高度 | number | - |
nikogu's avatar
nikogu committed
93 94
| color | 图表颜色 | string | `#2F9CFF` |
| bgColor | 图表北京颜色 | string | `#F0F2F5` |
nikogu's avatar
nikogu committed
95 96 97 98 99 100 101 102
| percent | 进度比例 | number | - |

### WaterWave

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| title | 图表标题 | ReactNode\|string | - |
| height | 图表高度 | number | - |
nikogu's avatar
nikogu committed
103
| color | 图表颜色 | string | `#1890FF` |
nikogu's avatar
nikogu committed
104 105
| percent | 进度比例 | number | - |

nikogu's avatar
nikogu committed
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
### TagCloud

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| tags | 标题 | Array<name, value\> | - |
| height | 高度值 | number | - |

### TimelineChart

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| data | 标题 | Array<x, y1, y2\> | - |
| titleMap | 指标别名 | Object{y1: '客流量', y2: '支付笔数'} | - |
| height | 高度值 | number | 400 |

nikogu's avatar
nikogu committed
121 122 123 124 125 126
### Field

| 参数      | 说明                                      | 类型         | 默认值 |
|----------|------------------------------------------|-------------|-------|
| label | 标题 | ReactNode\|string | - |
| value | 值 | ReactNode\|string | - |