API / Configuration / ChartTooltipRowRendererArgs
ChartTooltipRowRendererArgs:
object
Defined in: src/core/types/chart/tooltip.ts:160
Type declaration
| Name | Type | Description |
|---|---|---|
active? |
boolean |
- |
className? |
string |
CSS class name pre-built with active/striped modifiers. Apply it to the root <tr> element of the returned row: <tr className={className}>. |
color? |
string |
Color of the hovered point as a plain CSS color value — never the built-in swatch markup, since a custom row paints its own. Resolved from the point's own color when it has one, and from the series color otherwise; for a gradient series it is the gradient sampled at that point. undefined for series types whose tooltip has no color cell (e.g. waterfall). When rows[].cells overrides the color cell, its source decides the value instead. |
formattedValue? |
string |
- |
hovered? |
TooltipDataChunk<unknown>[] |
- |
id |
string |
- |
name |
string |
- |
striped? |
boolean |
- |
value |
string | number | null | undefined |
- |
Previous