Skip to content

Commit d60ca1f

Browse files
committed
[fix] description of the text property of the column object with grouped data
1 parent 49b36e2 commit d60ca1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/grid/usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,7 +939,7 @@ column: {
939939
id: string | number,
940940
header: [
941941
{
942-
text?: string,
942+
text?: string | ((content: ISummaryList) => string),
943943
tooltip?: boolean | object, // true by default
944944
tooltipTemplate?: (
945945
content: { value: string } & ISummaryList,
@@ -955,7 +955,7 @@ column: {
955955
],
956956
footer?: [
957957
{
958-
text?: string,
958+
text?: string | ((content: ISummaryList) => string),
959959
tooltip?: boolean | object, // true by default
960960
tooltipTemplate?: (
961961
content: { value: string } & ISummaryList,

0 commit comments

Comments
 (0)