- Prop
items- Type
readonly TimelineItem[]- Default
- —
- Requirement
- required
- Description
- —
TimelineChart
React example follows below.
Vue example follows below.
Angular example follows below.
Svelte example follows below.
Solid example follows below.
- surface
- —
- marks
- —
- size
- —
- value
- —
ts
import { TimelineChart } from "@grassroot/charts-react"; const timeline = [ { id: "research", label: "Customer research", start: "2026-01-12", end: "2026-02-06", lane: "Discovery", }, { id: "prototype", label: "Workflow prototype", start: "2026-02-09", end: "2026-03-06", lane: "Discovery", }, { id: "synthesis", label: "Research synthesis", start: "2026-03-02", end: "2026-03-20", lane: "Discovery", }, { id: "beta", label: "Private beta", start: "2026-03-09", end: "2026-04-24", lane: "Delivery", }, { id: "migration", label: "Customer migration", start: "2026-04-13", end: "2026-06-26", lane: "Delivery", }, { id: "warehouse", label: "Warehouse cutover", start: "2026-05-11", end: "2026-08-14", lane: "Delivery", }, { id: "pilot", label: "Partner pilot", start: "2026-07-06", end: "2026-09-18", lane: "Enablement", }, { id: "academy", label: "Docs and academy", start: "2026-08-17", end: "2026-10-30", lane: "Enablement", }, { id: "playbooks", label: "Support playbooks", start: "2026-09-07", end: "2026-10-16", lane: "Enablement", }, { id: "eu-launch", label: "EU regional launch", start: "2026-09-21", end: "2026-10-30", lane: "Rollout", }, { id: "us-launch", label: "US regional launch", start: "2026-10-12", end: "2026-11-20", lane: "Rollout", }, { id: "ga", label: "General availability", start: "2026-12-01", lane: "Rollout", milestone: true, },]; export default function TimelineChartDemo() { return ( <div> <TimelineChart ariaLabel="Customer data platform rollout across discovery, delivery, enablement, and launch, 2026" items={timeline} /> </div> );}- surface
- —
- marks
- —
- size
- —
- value
- —
ts
<script setup lang="ts">import { TimelineChart } from "@grassroot/charts-vue"; const timeline = [ { id: "research", label: "Customer research", start: "2026-01-12", end: "2026-02-06", lane: "Discovery", }, { id: "prototype", label: "Workflow prototype", start: "2026-02-09", end: "2026-03-06", lane: "Discovery", }, { id: "synthesis", label: "Research synthesis", start: "2026-03-02", end: "2026-03-20", lane: "Discovery", }, { id: "beta", label: "Private beta", start: "2026-03-09", end: "2026-04-24", lane: "Delivery", }, { id: "migration", label: "Customer migration", start: "2026-04-13", end: "2026-06-26", lane: "Delivery", }, { id: "warehouse", label: "Warehouse cutover", start: "2026-05-11", end: "2026-08-14", lane: "Delivery", }, { id: "pilot", label: "Partner pilot", start: "2026-07-06", end: "2026-09-18", lane: "Enablement", }, { id: "academy", label: "Docs and academy", start: "2026-08-17", end: "2026-10-30", lane: "Enablement", }, { id: "playbooks", label: "Support playbooks", start: "2026-09-07", end: "2026-10-16", lane: "Enablement", }, { id: "eu-launch", label: "EU regional launch", start: "2026-09-21", end: "2026-10-30", lane: "Rollout", }, { id: "us-launch", label: "US regional launch", start: "2026-10-12", end: "2026-11-20", lane: "Rollout", }, { id: "ga", label: "General availability", start: "2026-12-01", lane: "Rollout", milestone: true, },];</script> <template> <TimelineChart aria-label="Customer data platform rollout across discovery, delivery, enablement, and launch, 2026" :items="timeline" /></template>- surface
- —
- marks
- —
- size
- —
- value
- —
ts
import { ChangeDetectionStrategy, Component } from "@angular/core";import { GrassrootTimelineChart } from "@grassroot/charts-angular"; @Component({ selector: "app-timeline-chart-chart-demo", standalone: true, imports: [GrassrootTimelineChart], changeDetection: ChangeDetectionStrategy.OnPush, template: `<grassroot-timeline-chart [ariaLabel]="'Customer data platform rollout across discovery, delivery, enablement, and launch, 2026'" [items]="timeline" />`,})export class TimelineChartDemoComponent { readonly timeline = [ { id: "research", label: "Customer research", start: "2026-01-12", end: "2026-02-06", lane: "Discovery", }, { id: "prototype", label: "Workflow prototype", start: "2026-02-09", end: "2026-03-06", lane: "Discovery", }, { id: "synthesis", label: "Research synthesis", start: "2026-03-02", end: "2026-03-20", lane: "Discovery", }, { id: "beta", label: "Private beta", start: "2026-03-09", end: "2026-04-24", lane: "Delivery", }, { id: "migration", label: "Customer migration", start: "2026-04-13", end: "2026-06-26", lane: "Delivery", }, { id: "warehouse", label: "Warehouse cutover", start: "2026-05-11", end: "2026-08-14", lane: "Delivery", }, { id: "pilot", label: "Partner pilot", start: "2026-07-06", end: "2026-09-18", lane: "Enablement", }, { id: "academy", label: "Docs and academy", start: "2026-08-17", end: "2026-10-30", lane: "Enablement", }, { id: "playbooks", label: "Support playbooks", start: "2026-09-07", end: "2026-10-16", lane: "Enablement", }, { id: "eu-launch", label: "EU regional launch", start: "2026-09-21", end: "2026-10-30", lane: "Rollout", }, { id: "us-launch", label: "US regional launch", start: "2026-10-12", end: "2026-11-20", lane: "Rollout", }, { id: "ga", label: "General availability", start: "2026-12-01", lane: "Rollout", milestone: true, }, ];} export default TimelineChartDemoComponent;- surface
- —
- marks
- —
- size
- —
- value
- —
ts
<script lang="ts"> import { TimelineChart } from "@grassroot/charts-svelte"; const timeline = [ { id: "research", label: "Customer research", start: "2026-01-12", end: "2026-02-06", lane: "Discovery", }, { id: "prototype", label: "Workflow prototype", start: "2026-02-09", end: "2026-03-06", lane: "Discovery", }, { id: "synthesis", label: "Research synthesis", start: "2026-03-02", end: "2026-03-20", lane: "Discovery", }, { id: "beta", label: "Private beta", start: "2026-03-09", end: "2026-04-24", lane: "Delivery", }, { id: "migration", label: "Customer migration", start: "2026-04-13", end: "2026-06-26", lane: "Delivery", }, { id: "warehouse", label: "Warehouse cutover", start: "2026-05-11", end: "2026-08-14", lane: "Delivery", }, { id: "pilot", label: "Partner pilot", start: "2026-07-06", end: "2026-09-18", lane: "Enablement", }, { id: "academy", label: "Docs and academy", start: "2026-08-17", end: "2026-10-30", lane: "Enablement", }, { id: "playbooks", label: "Support playbooks", start: "2026-09-07", end: "2026-10-16", lane: "Enablement", }, { id: "eu-launch", label: "EU regional launch", start: "2026-09-21", end: "2026-10-30", lane: "Rollout", }, { id: "us-launch", label: "US regional launch", start: "2026-10-12", end: "2026-11-20", lane: "Rollout", }, { id: "ga", label: "General availability", start: "2026-12-01", lane: "Rollout", milestone: true, }, ];</script> <TimelineChart ariaLabel="Customer data platform rollout across discovery, delivery, enablement, and launch, 2026" items={timeline} />- surface
- —
- marks
- —
- size
- —
- value
- —
ts
/** @jsxImportSource solid-js */import { TimelineChart } from "@grassroot/charts-solid"; const timeline = [ { id: "research", label: "Customer research", start: "2026-01-12", end: "2026-02-06", lane: "Discovery", }, { id: "prototype", label: "Workflow prototype", start: "2026-02-09", end: "2026-03-06", lane: "Discovery", }, { id: "synthesis", label: "Research synthesis", start: "2026-03-02", end: "2026-03-20", lane: "Discovery", }, { id: "beta", label: "Private beta", start: "2026-03-09", end: "2026-04-24", lane: "Delivery", }, { id: "migration", label: "Customer migration", start: "2026-04-13", end: "2026-06-26", lane: "Delivery", }, { id: "warehouse", label: "Warehouse cutover", start: "2026-05-11", end: "2026-08-14", lane: "Delivery", }, { id: "pilot", label: "Partner pilot", start: "2026-07-06", end: "2026-09-18", lane: "Enablement", }, { id: "academy", label: "Docs and academy", start: "2026-08-17", end: "2026-10-30", lane: "Enablement", }, { id: "playbooks", label: "Support playbooks", start: "2026-09-07", end: "2026-10-16", lane: "Enablement", }, { id: "eu-launch", label: "EU regional launch", start: "2026-09-21", end: "2026-10-30", lane: "Rollout", }, { id: "us-launch", label: "US regional launch", start: "2026-10-12", end: "2026-11-20", lane: "Rollout", }, { id: "ga", label: "General availability", start: "2026-12-01", lane: "Rollout", milestone: true, },]; export default function TimelineChartDemo() { return <TimelineChart ariaLabel="Customer data platform rollout across discovery, delivery, enablement, and launch, 2026" items={timeline} />;}Installation
API Reference
Import
import { TimelineChart } from "@grassroot/charts-react";
Props
Prop
Type
Default
Requirement
Description
itemsreadonly TimelineItem[]—
required
—
layout"linear" | "spiral" | undefined—
optional
—
brushDomainChartXDomain | undefined—
optional
—
defaultBrushDomainChartXDomain | undefined—
optional
—
onBrushDomainChange((domain: ChartXDomain) => void) | undefined—
optional
—
zoomDomainChartXDomain | undefined—
optional
—
defaultZoomDomainChartXDomain | undefined—
optional
—
onZoomDomainChange((domain: ChartXDomain) => void) | undefined—
optional
—
zoomOnBrushboolean | undefined—
optional
—
formatXValue((value: Date, index: number) => string) | undefined—
optional
—
localestring | readonly string[] | undefined—
optional
—
timeZonestring | undefined—
optional
—
referenceLinesreadonly { value: Date | string | number; label?: string; }[] | undefined—
optional
—
referenceBandsreadonly { from: Date | string | number; to: Date | string | number; label?: string; }[] | undefined—
optional
—
- Prop
layout- Type
"linear" | "spiral" | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
brushDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
defaultBrushDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
onBrushDomainChange- Type
((domain: ChartXDomain) => void) | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
zoomDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
defaultZoomDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
onZoomDomainChange- Type
((domain: ChartXDomain) => void) | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
zoomOnBrush- Type
boolean | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
formatXValue- Type
((value: Date, index: number) => string) | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
locale- Type
string | readonly string[] | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
timeZone- Type
string | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
referenceLines- Type
readonly { value: Date | string | number; label?: string; }[] | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
referenceBands- Type
readonly { from: Date | string | number; to: Date | string | number; label?: string; }[] | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
legend- Type
boolean | import("@grassroot/chart-spec").LegendConfig | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
tooltip- Type
boolean | import("./base").ExpandedChartTooltipConfig<unknown> | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
animation- Type
boolean | import("./base").ExpandedChartAnimationConfig | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
onHiddenSeriesChange- Type
((ids: readonly string[]) => void) | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
onActiveDatumChange- Type
((id: string | null) => void) | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
renderer- Type
ChartRenderer | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
className- Type
string | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
theme- Type
import("@grassroot/theme").PartialChartTheme | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
title- Type
string | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
description- Type
string | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
ariaLabel- Type
string | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
keyboardNavigation- Type
boolean | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
width- Type
number | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
height- Type
number | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
gpuBackend- Type
ChartGpuBackend | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
rendererStrategy- Type
Partial<import("@grassroot/core").ChartRendererStrategy> | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
renderPlanMode- Type
"svg" | "host" | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
showGrid- Type
boolean | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
interactive- Type
boolean | undefined- Default
- —
- Requirement
- optional
- Description
- Gates every pointer/keyboard interaction the shell owns (hit-test on pointer move, focus-to-first, arrow navigation, Escape) and, with `keyboardNavigation`, whether the plot surface is focusable at all.
- Prop
hiddenSeries- Type
readonly string[] | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
defaultHiddenSeries- Type
readonly string[] | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
activeDatum- Type
string | null | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
defaultActiveDatum- Type
string | null | undefined- Default
- —
- Requirement
- optional
- Description
- Uncontrolled initial value for the `activeDatum`/`onActiveDatumChange` pair.
- Prop
speed- Type
number | undefined- Default
- —
- Requirement
- optional
- Description
- Playback-speed multiplier for entrance/ambient motion.
- Prop
morphDurationMs- Type
number | undefined- Default
- —
- Requirement
- optional
- Description
- How long a dataset change tweens, in milliseconds.
- Prop
replayToken- Type
string | number | undefined- Default
- —
- Requirement
- optional
- Description
- Changing this value replays the entrance animation.
Events
| Event | Payload |
|---|---|
onBrushDomainChange | ((domain: ChartXDomain) => void) | undefined |
onZoomDomainChange | ((domain: ChartXDomain) => void) | undefined |
onHiddenSeriesChange | ((ids: readonly string[]) => void) | undefined |
onActiveDatumChange | ((id: string | null) => void) | undefined |
Content regions
childrendataSummary
Native attributes
Standard DOM and ARIA attributes not listed above spread onto the root element.
Import
import { TimelineChart } from "@grassroot/charts-vue";
Props
Prop
Type
Default
Requirement
classNamestring | undefined—
optional
gpuBackend"auto" | "webgpu" | "webgl2" | undefined—
optional
widthnumber | undefined—
optional
heightnumber | undefined—
optional
rendererChartRenderer | undefined—
optional
rendererStrategyPartial<ChartRendererStrategy> | undefined—
optional
renderPlanMode"svg" | "host" | undefined"host"optional
showGridboolean | undefined—
optional
legendboolean | LegendConfig | undefinedfalseoptional
tooltipboolean | TooltipBehaviorConfig | undefinedtrueoptional
animationChartAnimationInput | undefined—
optional
interactiveboolean | undefinedtrueoptional
- Prop
className- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
gpuBackend- Type
"auto" | "webgpu" | "webgl2" | undefined- Default
- —
- Requirement
- optional
- Prop
width- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
height- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
renderer- Type
ChartRenderer | undefined- Default
- —
- Requirement
- optional
- Prop
rendererStrategy- Type
Partial<ChartRendererStrategy> | undefined- Default
- —
- Requirement
- optional
- Prop
renderPlanMode- Type
"svg" | "host" | undefined- Default
"host"- Requirement
- optional
- Prop
showGrid- Type
boolean | undefined- Default
- —
- Requirement
- optional
- Prop
legend- Type
boolean | LegendConfig | undefined- Default
false- Requirement
- optional
- Prop
tooltip- Type
boolean | TooltipBehaviorConfig | undefined- Default
true- Requirement
- optional
- Prop
animation- Type
ChartAnimationInput | undefined- Default
- —
- Requirement
- optional
- Prop
interactive- Type
boolean | undefined- Default
true- Requirement
- optional
- Prop
keyboardNavigation- Type
boolean | undefined- Default
true- Requirement
- optional
- Prop
hiddenSeries- Type
readonly string[] | undefined- Default
- —
- Requirement
- optional
- Prop
defaultHiddenSeries- Type
readonly string[] | undefined- Default
() => []- Requirement
- optional
- Prop
activeDatum- Type
string | null | undefined- Default
- —
- Requirement
- optional
- Prop
defaultActiveDatum- Type
string | null | undefined- Default
- —
- Requirement
- optional
- Prop
speed- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
morphDurationMs- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
replayToken- Type
string | number | undefined- Default
- —
- Requirement
- optional
- Prop
theme- Type
PartialChartTheme | undefined- Default
- —
- Requirement
- optional
- Prop
title- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
description- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
ariaLabel- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
items- Type
readonly TimelineItem[]- Default
- —
- Requirement
- required
- Prop
layout- Type
"linear" | "spiral" | undefined- Default
- —
- Requirement
- optional
- Prop
formatXValue- Type
((value: Date, index: number) => string) | undefined- Default
- —
- Requirement
- optional
- Prop
locale- Type
string | readonly string[] | undefined- Default
- —
- Requirement
- optional
- Prop
timeZone- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
referenceLines- Type
readonly { readonly value: Date | string | number; readonly label?: string; }[] | undefined- Default
- —
- Requirement
- optional
- Prop
referenceBands- Type
readonly { readonly from: Date | string | number; readonly to: Date | string | number; readonly label?: string; }[] | undefined- Default
- —
- Requirement
- optional
- Prop
brushDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Prop
defaultBrushDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Prop
zoomDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Prop
defaultZoomDomain- Type
ChartXDomain | undefined- Default
- —
- Requirement
- optional
- Prop
zoomOnBrush- Type
boolean | undefined- Default
false- Requirement
- optional
Events
| Event | Payload |
|---|---|
hiddenSeriesChange | [ids: readonly string[]] |
activeDatumChange | [id: string | null] |
brushDomainChange | [domain: ChartXDomain] |
zoomDomainChange | [domain: ChartXDomain] |
Content regions
dataSummarydefault
Import
import { ChangeDetectionStrategy, Component } from "@angular/core";
import { GrassrootTimelineChart } from "@grassroot/charts-angular";
Props
Prop
Type
Default
Requirement
rendererChartRenderer—
optional
gpuBackendChartGpuBackend—
optional
rendererStrategyPartial<ChartRendererStrategy>—
optional
renderPlanMode"svg" | "host""host"optional
ariaLabelstring—
optional
titlestring—
optional
descriptionstring—
optional
themePartialChartTheme—
optional
animationChartAnimationInput—
optional
interactivebooleantrueoptional
tooltipboolean | TooltipBehaviorConfigtrueoptional
legendboolean | LegendConfig—
optional
- Prop
renderer- Type
ChartRenderer- Default
- —
- Requirement
- optional
- Prop
gpuBackend- Type
ChartGpuBackend- Default
- —
- Requirement
- optional
- Prop
rendererStrategy- Type
Partial<ChartRendererStrategy>- Default
- —
- Requirement
- optional
- Prop
renderPlanMode- Type
"svg" | "host"- Default
"host"- Requirement
- optional
- Prop
ariaLabel- Type
string- Default
- —
- Requirement
- optional
- Prop
title- Type
string- Default
- —
- Requirement
- optional
- Prop
description- Type
string- Default
- —
- Requirement
- optional
- Prop
theme- Type
PartialChartTheme- Default
- —
- Requirement
- optional
- Prop
animation- Type
ChartAnimationInput- Default
- —
- Requirement
- optional
- Prop
interactive- Type
boolean- Default
true- Requirement
- optional
- Prop
keyboardNavigation- Type
boolean- Default
true- Requirement
- optional
- Prop
tooltip- Type
boolean | TooltipBehaviorConfig- Default
true- Requirement
- optional
- Prop
legend- Type
boolean | LegendConfig- Default
- —
- Requirement
- optional
- Prop
hiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
defaultHiddenSeries- Type
readonly string[]- Default
[]- Requirement
- optional
- Prop
activeDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
defaultActiveDatum- Type
string | null- Default
null- Requirement
- optional
- Prop
speed- Type
number- Default
- —
- Requirement
- optional
- Prop
morphDurationMs- Type
number- Default
- —
- Requirement
- optional
- Prop
replayToken- Type
string | number- Default
- —
- Requirement
- optional
- Prop
brushDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
defaultBrushDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
zoomDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
defaultZoomDomain- Type
ChartXDomain- Default
null- Requirement
- optional
- Prop
zoomOnBrush- Type
boolean- Default
false- Requirement
- optional
- Prop
items- Type
readonly TimelineItem[]- Default
- —
- Requirement
- required
- Prop
layout- Type
TimelineChartOptions["layout"]- Default
- —
- Requirement
- optional
- Prop
width- Type
number- Default
- —
- Requirement
- optional
- Prop
height- Type
number- Default
- —
- Requirement
- optional
- Prop
showGrid- Type
boolean- Default
- —
- Requirement
- optional
- Prop
formatXValue- Type
TimelineChartOptions["formatXValue"]- Default
- —
- Requirement
- optional
- Prop
locale- Type
TimelineChartOptions["locale"]- Default
- —
- Requirement
- optional
- Prop
timeZone- Type
TimelineChartOptions["timeZone"]- Default
- —
- Requirement
- optional
- Prop
referenceLines- Type
TimelineChartOptions["referenceLines"]- Default
- —
- Requirement
- optional
- Prop
referenceBands- Type
TimelineChartOptions["referenceBands"]- Default
- —
- Requirement
- optional
- Prop
className- Type
string- Default
- —
- Requirement
- optional
Events
| Event | Payload |
|---|---|
activeDatumChange | string | null |
hiddenSeriesChange | readonly string[] |
brushDomainChange | ChartXDomain |
zoomDomainChange | ChartXDomain |
Content regions
dataSummarydefault
Import
import { TimelineChart } from "@grassroot/charts-svelte";
Props
Prop
Type
Default
Requirement
itemsreadonly TimelineItem[]—
required
layoutTimelineChartOptions["layout"]—
optional
formatXValueTimelineChartOptions["formatXValue"]—
optional
localeTimelineChartOptions["locale"]—
optional
timeZoneTimelineChartOptions["timeZone"]—
optional
referenceLinesTimelineChartOptions["referenceLines"]—
optional
referenceBandsTimelineChartOptions["referenceBands"]—
optional
brushDomain{ readonly start: number; readonly end: number } | null—
optional
defaultBrushDomain{ readonly start: number; readonly end: number } | null—
optional
onBrushDomainChange(domain: { readonly start: number; readonly end: number } | null) => void—
optional
zoomDomain{ readonly start: number; readonly end: number } | null—
optional
defaultZoomDomain{ readonly start: number; readonly end: number } | nullnulloptional
onZoomDomainChange(domain: { readonly start: number; readonly end: number } | null) => void—
optional
zoomOnBrushbooleanfalseoptional
- Prop
items- Type
readonly TimelineItem[]- Default
- —
- Requirement
- required
- Prop
layout- Type
TimelineChartOptions["layout"]- Default
- —
- Requirement
- optional
- Prop
formatXValue- Type
TimelineChartOptions["formatXValue"]- Default
- —
- Requirement
- optional
- Prop
locale- Type
TimelineChartOptions["locale"]- Default
- —
- Requirement
- optional
- Prop
timeZone- Type
TimelineChartOptions["timeZone"]- Default
- —
- Requirement
- optional
- Prop
referenceLines- Type
TimelineChartOptions["referenceLines"]- Default
- —
- Requirement
- optional
- Prop
referenceBands- Type
TimelineChartOptions["referenceBands"]- Default
- —
- Requirement
- optional
- Prop
brushDomain- Type
{ readonly start: number; readonly end: number } | null- Default
- —
- Requirement
- optional
- Prop
defaultBrushDomain- Type
{ readonly start: number; readonly end: number } | null- Default
- —
- Requirement
- optional
- Prop
onBrushDomainChange- Type
(domain: { readonly start: number; readonly end: number } | null) => void- Default
- —
- Requirement
- optional
- Prop
zoomDomain- Type
{ readonly start: number; readonly end: number } | null- Default
- —
- Requirement
- optional
- Prop
defaultZoomDomain- Type
{ readonly start: number; readonly end: number } | null- Default
null- Requirement
- optional
- Prop
onZoomDomainChange- Type
(domain: { readonly start: number; readonly end: number } | null) => void- Default
- —
- Requirement
- optional
- Prop
zoomOnBrush- Type
boolean- Default
false- Requirement
- optional
- Prop
onHiddenSeriesChange- Type
(ids: readonly string[]) => void- Default
- —
- Requirement
- optional
- Prop
onActiveDatumChange- Type
(id: string | null) => void- Default
- —
- Requirement
- optional
- Prop
class- Type
string- Default
- —
- Requirement
- optional
- Prop
style- Type
string- Default
- —
- Requirement
- optional
- Prop
width- Type
number- Default
- —
- Requirement
- optional
- Prop
height- Type
number- Default
- —
- Requirement
- optional
- Prop
renderer- Type
ChartRenderer- Default
- —
- Requirement
- optional
- Prop
gpuBackend- Type
ChartGpuBackend- Default
- —
- Requirement
- optional
- Prop
rendererStrategy- Type
Partial<ChartRendererStrategy>- Default
- —
- Requirement
- optional
- Prop
renderPlanMode- Type
"svg" | "host"- Default
"host"- Requirement
- optional
- Prop
showGrid- Type
boolean- Default
- —
- Requirement
- optional
- Prop
legend- Type
boolean | LegendConfig- Default
false- Requirement
- optional
- Prop
tooltip- Type
boolean | TooltipBehaviorConfig- Default
true- Requirement
- optional
- Prop
animation- Type
ChartAnimationInput- Default
- —
- Requirement
- optional
- Prop
interactive- Type
boolean- Default
true- Requirement
- optional
- Prop
keyboardNavigation- Type
boolean- Default
true- Requirement
- optional
- Prop
hiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
defaultHiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
activeDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
defaultActiveDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
speed- Type
number- Default
- —
- Requirement
- optional
- Prop
morphDurationMs- Type
number- Default
- —
- Requirement
- optional
- Prop
replayToken- Type
string | number- Default
- —
- Requirement
- optional
- Prop
theme- Type
PartialChartTheme- Default
- —
- Requirement
- optional
- Prop
title- Type
string- Default
- —
- Requirement
- optional
- Prop
description- Type
string- Default
- —
- Requirement
- optional
- Prop
ariaLabel- Type
string- Default
- —
- Requirement
- optional
Events
| Event | Payload |
|---|---|
onBrushDomainChange | (domain: { readonly start: number; readonly end: number } | null) => void |
onZoomDomainChange | (domain: { readonly start: number; readonly end: number } | null) => void |
onHiddenSeriesChange | (ids: readonly string[]) => void |
onActiveDatumChange | (id: string | null) => void |
Content regions
childrendataSummary
Import
import { TimelineChart } from "@grassroot/charts-solid";
Props
Prop
Type
Default
Requirement
itemsreadonly TimelineItem[]—
required
layoutTimelineChartOptions["layout"]—
optional
formatXValue(value: Date, index: number) => string—
optional
localestring | readonly string[]—
optional
timeZonestring—
optional
referenceLinesreadonly { readonly value: Date | string | number; readonly label?: string }[]—
optional
referenceBandsreadonly { readonly from: Date | string | number; readonly to: Date | string | number; readonly label?: string }[]—
optional
brushDomainChartXDomain—
optional
defaultBrushDomainChartXDomain—
optional
onBrushDomainChange(domain: ChartXDomain) => void—
optional
zoomDomainChartXDomain—
optional
defaultZoomDomainChartXDomain—
optional
onZoomDomainChange(domain: ChartXDomain) => void—
optional
zoomOnBrushboolean—
optional
- Prop
items- Type
readonly TimelineItem[]- Default
- —
- Requirement
- required
- Prop
layout- Type
TimelineChartOptions["layout"]- Default
- —
- Requirement
- optional
- Prop
formatXValue- Type
(value: Date, index: number) => string- Default
- —
- Requirement
- optional
- Prop
locale- Type
string | readonly string[]- Default
- —
- Requirement
- optional
- Prop
timeZone- Type
string- Default
- —
- Requirement
- optional
- Prop
referenceLines- Type
readonly { readonly value: Date | string | number; readonly label?: string }[]- Default
- —
- Requirement
- optional
- Prop
referenceBands- Type
readonly { readonly from: Date | string | number; readonly to: Date | string | number; readonly label?: string }[]- Default
- —
- Requirement
- optional
- Prop
brushDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
defaultBrushDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
onBrushDomainChange- Type
(domain: ChartXDomain) => void- Default
- —
- Requirement
- optional
- Prop
zoomDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
defaultZoomDomain- Type
ChartXDomain- Default
- —
- Requirement
- optional
- Prop
onZoomDomainChange- Type
(domain: ChartXDomain) => void- Default
- —
- Requirement
- optional
- Prop
zoomOnBrush- Type
boolean- Default
- —
- Requirement
- optional
- Prop
onActiveDatumChange- Type
(id: string | null) => void- Default
- —
- Requirement
- optional
- Prop
onHiddenSeriesChange- Type
(ids: readonly string[]) => void- Default
- —
- Requirement
- optional
- Prop
class- Type
string- Default
- —
- Requirement
- optional
- Prop
style- Type
JSX.CSSProperties- Default
- —
- Requirement
- optional
- Prop
width- Type
number- Default
- —
- Requirement
- optional
- Prop
height- Type
number- Default
- —
- Requirement
- optional
- Prop
renderer- Type
ChartRenderer- Default
- —
- Requirement
- optional
- Prop
gpuBackend- Type
ChartGpuBackend- Default
- —
- Requirement
- optional
- Prop
rendererStrategy- Type
Partial<ChartRendererStrategy>- Default
- —
- Requirement
- optional
- Prop
renderPlanMode- Type
"svg" | "host"- Default
- —
- Requirement
- optional
- Prop
showGrid- Type
boolean- Default
- —
- Requirement
- optional
- Prop
legend- Type
boolean | LegendConfig- Default
- —
- Requirement
- optional
- Prop
tooltip- Type
boolean | TooltipBehaviorConfig- Default
- —
- Requirement
- optional
- Prop
animation- Type
ChartAnimationInput- Default
- —
- Requirement
- optional
- Prop
interactive- Type
boolean- Default
- —
- Requirement
- optional
- Prop
keyboardNavigation- Type
boolean- Default
- —
- Requirement
- optional
- Prop
hiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
defaultHiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
activeDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
defaultActiveDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
speed- Type
number- Default
- —
- Requirement
- optional
- Prop
morphDurationMs- Type
number- Default
- —
- Requirement
- optional
- Prop
replayToken- Type
string | number- Default
- —
- Requirement
- optional
- Prop
theme- Type
PartialChartTheme- Default
- —
- Requirement
- optional
- Prop
title- Type
string- Default
- —
- Requirement
- optional
- Prop
description- Type
string- Default
- —
- Requirement
- optional
- Prop
ariaLabel- Type
string- Default
- —
- Requirement
- optional
Events
| Event | Payload |
|---|---|
onBrushDomainChange | (domain: ChartXDomain) => void |
onZoomDomainChange | (domain: ChartXDomain) => void |
onActiveDatumChange | (id: string | null) => void |
onHiddenSeriesChange | (ids: readonly string[]) => void |
Content regions
childrendataSummary