Custom columns cell tooltip
Usage
ag_col_tooltip(
x,
columns = NULL,
tooltipField = NULL,
tooltipValueGetter = NULL,
tooltipComponent = NULL,
tooltipComponentParams = NULL,
...
)
Arguments
- x
aggrid Object
- columns
Specify the column to modify, Default is all columns.
- tooltipField
The field of the tooltip to apply to the cell.
- tooltipValueGetter
Callback that should return the string to use for a tooltip,
tooltipField
takes precedence if set. If using a customtooltipComponent
you may return any custom value to be passed to your tooltip component.- tooltipComponent
Provide your own tooltip component for the column.
- ...
please see https://www.ag-grid.com/javascript-data-grid/column-properties/.
- The
params used to configure
tooltipComponent
.