markers — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited markers (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.
Reference lines and hover indicators for highlighting specific values on charts. LinearValueMarker for cartesian charts, RadialValueMarker for radial charts, MarkLine for hover crosshairs.
import { LinearValueMarker, RadialValueMarker, MarkLine } from 'reaviz';| Prop | Type | Default | Description | |
|---|---|---|---|---|
value | any | — | Value to mark on the axis (required) | |
color | string | — | Line color (required) | |
thickness | number | 1 | Line thickness | |
size | number | — | Custom line size | |
direction | `'horizontal' \ | 'vertical'` | 'horizontal' | Line direction |
className | string | — | CSS class |
| Prop | Type | Default | Description |
|---|---|---|---|
value | number | — | Value to mark (required) |
color | string | — | Line color (required) |
thickness | number | 1 | Line thickness |
className | string | — | CSS class |
| Prop | Type | Default | Description |
|---|---|---|---|
strokeColor | string | '#eee' | Line color |
strokeWidth | number | 1 | Line thickness |
<AreaChart
data={data}
series={
<AreaSeries
valueMarkers={[
<LinearValueMarker value={50} color="#D740BE" />,
<LinearValueMarker value={25} color="#F8A340" />,
]}
/>
}
/><LinearValueMarker value={100} color="red" thickness={3} /><LinearValueMarker
value={new Date('2024-06-01')}
color="#2196F3"
direction="vertical"
/><BarChart
data={data}
series={
<BarSeries
valueMarkers={[
<LinearValueMarker value={50} color="#D740BE" />,
]}
/>
}
/><RadialAreaChart
data={data}
series={
<RadialAreaSeries
valueMarkers={[
<RadialValueMarker value={75} color="#FF5722" />,
]}
/>
}
/>// MarkLine is included by default in AreaSeries/LineSeries
// Customize or disable it:
<AreaSeries markLine={<MarkLine strokeColor="#fff" strokeWidth={2} />} />
// Remove hover crosshair
<AreaSeries markLine={null} />valueMarkers as an array to the series component (AreaSeries, BarSeries, LineSeries, etc.)MarkLine is the hover crosshair shown when mousing over area/line charts — included by default~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.