You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| summary | (data: readonly RecordType[]) => React.ReactNode | - |"summary" attribute in Ant Design's "Table" component is used to define the summary row of the table. The summary row is a special row that is usually used to display summary information of all rows in the table, such as total, average, etc. |
118
+
| summary | (data: readonly RecordType[]) => React.ReactNode | - |`summary` attribute in `table`component is used to define the summary row. |
| fixed | boolean \| 'top' \| 'bottom' | - | "true" fixes the summary row at the bottom of the table. |
146
-
147
-
"top" fixes the summary row at the top of the table, while "bottom" fixes it at the bottom. "undefined" or "false" makes the summary row scrollable along with the table. |
145
+
| fixed | boolean \| 'top' \| 'bottom' | - |`true` fixes the summary row at the bottom of the table. `top` fixes the summary row at the top of the table, while `bottom` fixes it at the bottom. `undefined` or `false` makes the summary row scrollable along with the table. |
148
146
149
147
### Table.Summary.Row
150
148
151
149
| Name | Type | Default | Description |
152
150
| --- | --- | --- | --- |
153
151
| key | String || key of this summary |
154
152
| className | String | - | className of this summary row |
155
-
| onClick | (e?: React.MouseEvent<HTMLElement>) => void | - | The onClick attribute in Ant Design's Table.Summary.Row component can be used to set a click event handler for the summary row. |
153
+
| style | React.CSSProperties | - | style of this summary row |
154
+
| onClick | (e?: React.MouseEvent<HTMLElement>) => void | - | The `onClick` attribute in `Table.Summary.Row` component can be used to set a click event handler for the summary row. |
0 commit comments