ant-design/components/rate/index.en-US.md

40 lines
1.3 KiB
Markdown
Raw Normal View History

---
category: Components
type: Data Entry
title: Rate
---
Rate component.
2016-09-10 13:43:30 +08:00
## When To Use
2016-11-16 21:33:37 +08:00
- Show evaluation.
- A quick rating operation on something.
## API
2017-10-25 10:25:44 +08:00
| Property | Description | type | Default |
| -------- | ----------- | ---- | ------- |
| allowClear | whether to allow clear when click again | boolean | true |
2017-12-29 20:22:58 +08:00
| allowHalf | whether to allow semi selection | boolean | false |
| autoFocus | get focus when component mounted | boolean | false |
2017-03-06 14:23:38 +08:00
| character | custom character of rate | ReactNode | `<Icon type="star" />` |
| className | custom class name of rate | string | - |
2017-10-25 10:25:44 +08:00
| count | star count | number | 5 |
| defaultValue | default value | number | 0 |
| disabled | read only, unable to interact | boolean | false |
| style | custom style object of rate | object | - |
2017-10-25 10:25:44 +08:00
| value | current value | number | - |
2017-11-28 10:48:58 +08:00
| onBlur | callback when component lose focus | Function() | - |
2017-10-25 10:25:44 +08:00
| onChange | callback when select value | Function(value: number) | - |
2017-11-28 10:48:58 +08:00
| onFocus | callback when component get focus | Function() | - |
2017-10-25 10:25:44 +08:00
| onHoverChange | callback when hover item | Function(value: number) | - |
2017-11-28 10:48:58 +08:00
| onKeyDown | callback when keydown on component | Function(event) | - |
## Methods
| Name | Description |
| ---- | ----------- |
| blur() | remove focus |
2017-12-29 20:22:58 +08:00
| focus() | get focus |