We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3800ae commit 5f58beeCopy full SHA for 5f58bee
packages/react-google-charts/src/types.ts
@@ -419,7 +419,7 @@ export type GoogleDataTable = {
419
setRowProperty: (rowIndex: number, name: string, value: any) => void;
420
setRowProperties: (rowIndex: number, properties: {} | null) => void;
421
setTableProperties: (properties: {} | null) => void;
422
- setValue: (rowIndex: number, columnIndex: number, value: string) => void;
+ setValue: (rowIndex: number, columnIndex: number, value: boolean | string | number | Date | number[] | null) => void;
423
sort: (sortColumns: GoogleDataTableSortColumns) => void;
424
toJSON: () => string; // GoogleDataTableJS
425
};
0 commit comments