tooltip-b6f308 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited tooltip-b6f308 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Hover tooltips for chart data. TooltipArea handles mouse tracking and value lookup; ChartTooltip renders the popup; TooltipTemplate formats the content.
import { ChartTooltip, TooltipArea, TooltipTemplate } from 'reaviz';| Prop | Type | Default | Description | |
|---|---|---|---|---|
content | `ReactElement \ | (data, color) => ReactNode` | <TooltipTemplate /> | Tooltip content renderer |
followCursor | boolean | — | Move tooltip with cursor | |
value | any | — | Data value (set internally) | |
color | any | — | Series color (set internally) | |
data | any | — | Full dataset (set internally) |
Also accepts TooltipProps from reablocks (placement, modifiers, etc.).
Most props are set internally by the parent chart. User-configurable:
| Prop | Type | Default | Description |
|---|---|---|---|
tooltip | ReactElement<ChartTooltipProps> | <ChartTooltip /> | Tooltip component |
disabled | boolean | — | Disable tooltips |
inverse | boolean | true | Inverse data lookup |
placement | Placement | — | Tooltip placement |
onValueEnter | (event: TooltipAreaEvent) => void | — | Value hover callback |
onValueLeave | () => void | — | Value leave callback |
| Prop | Type | Default | Description | |
|---|---|---|---|---|
value | `SingleTooltipValue \ | MultipleTooltipValues` | — | Tooltip data |
color | any | — | Series color | |
className | string | — | CSS class |
Most charts include tooltips by default — no configuration needed.
<AreaChart
data={data}
series={
<AreaSeries
tooltip={
<TooltipArea
tooltip={
<ChartTooltip
content={(d, color) => (
<div>
<strong>{d.x}</strong>: {d.y}
</div>
)}
/>
}
/>
}
/>
}
/><ChartTooltip followCursor={true} />import { offset } from '@floating-ui/dom';
<ChartTooltip
followCursor={true}
modifiers={[offset(5)]}
/><AreaSeries tooltip={<TooltipArea disabled />} />
// Or completely remove
<BarSeries tooltip={null} /><TooltipArea
onValueEnter={(event) => {
console.log('Hovered:', event.value);
}}
onValueLeave={() => {
console.log('Left');
}}
/>~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.