- Prop
data- Type
readonly IsoMatrixDatum[]- Default
- —
- Requirement
- required
- Description
- —
IsoMatrixChart
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
const cells = [ [48, 62, 88, 126, 188, 214, 196, 164, 128, 96, 74, 58], [42, 56, 81, 118, 172, 198, 181, 151, 116, 88, 68, 52], [31, 44, 66, 91, 144, 168, 152, 132, 98, 76, 58, 41], [26, 38, 54, 78, 116, 138, 124, 109, 82, 62, 48, 34], [22, 31, 46, 64, 98, 118, 106, 92, 71, 51, 39, 28], [18, 26, 38, 52, 84, 102, 91, 79, 60, 43, 32, 24], [14, 21, 31, 44, 68, 84, 76, 64, 49, 36, 26, 19], [11, 16, 24, 36, 54, 68, 61, 51, 38, 28, 20, 14],] as const; const isoMatrixChartFixture = { id: "iso-matrix-chart", ariaLabel: "Average requests per minute for eight services across twelve hours", data: cells.flatMap((values, x) => values.map((value, y) => ({ x, y, value }))), columns: 8, rows: 12,}; import { IsoMatrixChart } from "@grassroot/charts-react"; export default function IsoMatrixChartDemo() { return ( <div> <IsoMatrixChart {...isoMatrixChartFixture} /> </div> );}- surface
- —
- marks
- —
- size
- —
- value
- —
ts
<script setup lang="ts">const cells = [ [48, 62, 88, 126, 188, 214, 196, 164, 128, 96, 74, 58], [42, 56, 81, 118, 172, 198, 181, 151, 116, 88, 68, 52], [31, 44, 66, 91, 144, 168, 152, 132, 98, 76, 58, 41], [26, 38, 54, 78, 116, 138, 124, 109, 82, 62, 48, 34], [22, 31, 46, 64, 98, 118, 106, 92, 71, 51, 39, 28], [18, 26, 38, 52, 84, 102, 91, 79, 60, 43, 32, 24], [14, 21, 31, 44, 68, 84, 76, 64, 49, 36, 26, 19], [11, 16, 24, 36, 54, 68, 61, 51, 38, 28, 20, 14],] as const; const isoMatrixChartFixture = { id: "iso-matrix-chart", ariaLabel: "Average requests per minute for eight services across twelve hours", data: cells.flatMap((values, x) => values.map((value, y) => ({ x, y, value }))), columns: 8, rows: 12,}; import { IsoMatrixChart } from "@grassroot/charts-vue";</script> <template><IsoMatrixChart v-bind="isoMatrixChartFixture" /></template>- surface
- —
- marks
- —
- size
- —
- value
- —
ts
import { ChangeDetectionStrategy, Component } from "@angular/core";const cells = [ [48, 62, 88, 126, 188, 214, 196, 164, 128, 96, 74, 58], [42, 56, 81, 118, 172, 198, 181, 151, 116, 88, 68, 52], [31, 44, 66, 91, 144, 168, 152, 132, 98, 76, 58, 41], [26, 38, 54, 78, 116, 138, 124, 109, 82, 62, 48, 34], [22, 31, 46, 64, 98, 118, 106, 92, 71, 51, 39, 28], [18, 26, 38, 52, 84, 102, 91, 79, 60, 43, 32, 24], [14, 21, 31, 44, 68, 84, 76, 64, 49, 36, 26, 19], [11, 16, 24, 36, 54, 68, 61, 51, 38, 28, 20, 14],] as const; const isoMatrixChartFixture = { id: "iso-matrix-chart", ariaLabel: "Average requests per minute for eight services across twelve hours", data: cells.flatMap((values, x) => values.map((value, y) => ({ x, y, value }))), columns: 8, rows: 12,}; import { GrassrootIsoMatrixChart } from "@grassroot/charts-angular"; @Component({ selector: "app-iso-matrix-chart-demo", standalone: true, imports: [GrassrootIsoMatrixChart], changeDetection: ChangeDetectionStrategy.OnPush, template: `<grassroot-iso-matrix-chart [data]="fixture.data" [ariaLabel]="fixture.ariaLabel" [columns]="fixture.columns" [rows]="fixture.rows" />`,})export class IsoMatrixChartDemoComponent { readonly fixture = isoMatrixChartFixture;} export default IsoMatrixChartDemoComponent;- surface
- —
- marks
- —
- size
- —
- value
- —
ts
<script lang="ts"> const cells = [ [48, 62, 88, 126, 188, 214, 196, 164, 128, 96, 74, 58], [42, 56, 81, 118, 172, 198, 181, 151, 116, 88, 68, 52], [31, 44, 66, 91, 144, 168, 152, 132, 98, 76, 58, 41], [26, 38, 54, 78, 116, 138, 124, 109, 82, 62, 48, 34], [22, 31, 46, 64, 98, 118, 106, 92, 71, 51, 39, 28], [18, 26, 38, 52, 84, 102, 91, 79, 60, 43, 32, 24], [14, 21, 31, 44, 68, 84, 76, 64, 49, 36, 26, 19], [11, 16, 24, 36, 54, 68, 61, 51, 38, 28, 20, 14], ] as const; const isoMatrixChartFixture = { id: "iso-matrix-chart", ariaLabel: "Average requests per minute for eight services across twelve hours", data: cells.flatMap((values, x) => values.map((value, y) => ({ x, y, value }))), columns: 8, rows: 12, }; import { IsoMatrixChart } from "@grassroot/charts-svelte";</script> <IsoMatrixChart {...isoMatrixChartFixture} />- surface
- —
- marks
- —
- size
- —
- value
- —
ts
/** @jsxImportSource solid-js */const cells = [ [48, 62, 88, 126, 188, 214, 196, 164, 128, 96, 74, 58], [42, 56, 81, 118, 172, 198, 181, 151, 116, 88, 68, 52], [31, 44, 66, 91, 144, 168, 152, 132, 98, 76, 58, 41], [26, 38, 54, 78, 116, 138, 124, 109, 82, 62, 48, 34], [22, 31, 46, 64, 98, 118, 106, 92, 71, 51, 39, 28], [18, 26, 38, 52, 84, 102, 91, 79, 60, 43, 32, 24], [14, 21, 31, 44, 68, 84, 76, 64, 49, 36, 26, 19], [11, 16, 24, 36, 54, 68, 61, 51, 38, 28, 20, 14],] as const; const isoMatrixChartFixture = { id: "iso-matrix-chart", ariaLabel: "Average requests per minute for eight services across twelve hours", data: cells.flatMap((values, x) => values.map((value, y) => ({ x, y, value }))), columns: 8, rows: 12,}; import { IsoMatrixChart } from "@grassroot/charts-solid"; export default function IsoMatrixChartDemo() { return <IsoMatrixChart {...isoMatrixChartFixture} />;}Installation
API Reference
Import
import { IsoMatrixChart } from "@grassroot/charts-react";
Props
Prop
Type
Default
Requirement
Description
datareadonly IsoMatrixDatum[]—
required
—
columnsnumber | undefined—
optional
—
rowsnumber | undefined—
optional
—
legendboolean | import("@grassroot/chart-spec").LegendConfig | undefined—
optional
—
tooltipboolean | import("./base").ExpandedChartTooltipConfig<unknown> | undefined—
optional
—
animationboolean | import("./base").ExpandedChartAnimationConfig | undefined—
optional
—
onHiddenSeriesChange((ids: readonly string[]) => void) | undefined—
optional
—
onActiveDatumChange((id: string | null) => void) | undefined—
optional
—
rendererimport("@grassroot/core").ChartRenderer | undefined—
optional
—
classNamestring | undefined—
optional
—
themeimport("@grassroot/theme").PartialChartTheme | undefined—
optional
—
titlestring | undefined—
optional
—
descriptionstring | undefined—
optional
—
ariaLabelstring | undefined—
optional
—
- Prop
columns- Type
number | undefined- Default
- —
- Requirement
- optional
- Description
- —
- Prop
rows- Type
number | 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
import("@grassroot/core").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
import("@grassroot/core").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 |
|---|---|
onHiddenSeriesChange | ((ids: readonly string[]) => void) | undefined |
onActiveDatumChange | ((id: string | null) => void) | undefined |
Content regions
dataSummary
Native attributes
Standard DOM and ARIA attributes not listed above spread onto the root element.
Import
import { IsoMatrixChart } from "@grassroot/charts-vue";
Props
Prop
Type
Default
Requirement
datareadonly IsoMatrixDatum[]—
required
columnsnumber | undefined—
optional
rowsnumber | undefined—
optional
widthnumber | undefined—
optional
heightnumber | undefined—
optional
showGridboolean | undefined—
optional
ariaLabelstring | undefined—
optional
titlestring | undefined—
optional
descriptionstring | undefined—
optional
classNamestring | undefined—
optional
rendererChartRenderer | undefined—
optional
gpuBackend"auto" | "webgpu" | "webgl2" | undefined—
optional
rendererStrategyPartial<ChartRendererStrategy> | undefined—
optional
renderPlanMode"svg" | "host" | undefined"host"optional
- Prop
data- Type
readonly IsoMatrixDatum[]- Default
- —
- Requirement
- required
- Prop
columns- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
rows- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
width- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
height- Type
number | undefined- Default
- —
- Requirement
- optional
- Prop
showGrid- Type
boolean | undefined- Default
- —
- Requirement
- optional
- Prop
ariaLabel- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
title- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
description- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
className- Type
string | undefined- Default
- —
- Requirement
- optional
- Prop
renderer- Type
ChartRenderer | undefined- Default
- —
- Requirement
- optional
- Prop
gpuBackend- Type
"auto" | "webgpu" | "webgl2" | undefined- Default
- —
- Requirement
- optional
- Prop
rendererStrategy- Type
Partial<ChartRendererStrategy> | undefined- Default
- —
- Requirement
- optional
- Prop
renderPlanMode- Type
"svg" | "host" | undefined- Default
"host"- Requirement
- optional
- Prop
theme- Type
PartialChartTheme | undefined- Default
- —
- 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
tooltip- Type
boolean | TooltipBehaviorConfig | undefined- Default
true- Requirement
- optional
- Prop
legend- Type
boolean | LegendConfig | undefined- Default
false- 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
Events
| Event | Payload |
|---|---|
hiddenSeriesChange | [ids: readonly string[]] |
activeDatumChange | [id: string | null] |
Content regions
dataSummary
Import
import { ChangeDetectionStrategy, Component } from "@angular/core";
import { GrassrootIsoMatrixChart } 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
width- Type
number- Default
- —
- Requirement
- optional
- Prop
height- Type
number- Default
- —
- Requirement
- optional
- Prop
showGrid- Type
boolean- Default
- —
- Requirement
- optional
- Prop
className- Type
string- Default
- —
- Requirement
- optional
- Prop
data- Type
readonly IsoMatrixDatum[]- Default
- —
- Requirement
- required
- Prop
columns- Type
number- Default
- —
- Requirement
- optional
- Prop
rows- Type
number- Default
- —
- Requirement
- optional
Events
| Event | Payload |
|---|---|
activeDatumChange | string | null |
hiddenSeriesChange | readonly string[] |
Content regions
dataSummary
Import
import { IsoMatrixChart } from "@grassroot/charts-svelte";
Props
Prop
Type
Default
Requirement
datareadonly IsoMatrixDatum[]—
required
columnsnumber—
optional
rowsnumber—
optional
widthnumber—
optional
heightnumber—
optional
showGridboolean—
optional
rendererChartRenderer—
optional
gpuBackendChartGpuBackend—
optional
rendererStrategyPartial<ChartRendererStrategy>—
optional
renderPlanMode"svg" | "host"—
optional
ariaLabelstring—
optional
legendboolean | LegendConfig—
optional
tooltipboolean | TooltipBehaviorConfig—
optional
activeDatumstring | null—
optional
- Prop
data- Type
readonly IsoMatrixDatum[]- Default
- —
- Requirement
- required
- Prop
columns- Type
number- Default
- —
- Requirement
- optional
- Prop
rows- Type
number- 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
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
ariaLabel- Type
string- Default
- —
- Requirement
- optional
- Prop
legend- Type
boolean | LegendConfig- Default
- —
- Requirement
- optional
- Prop
tooltip- Type
boolean | TooltipBehaviorConfig- Default
- —
- Requirement
- optional
- Prop
activeDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
defaultActiveDatum- Type
string | null- Default
- —
- Requirement
- optional
- Prop
onActiveDatumChange- Type
(id: string | null) => void- Default
- —
- Requirement
- optional
- Prop
hiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
defaultHiddenSeries- Type
readonly string[]- Default
- —
- Requirement
- optional
- Prop
onHiddenSeriesChange- Type
(ids: readonly string[]) => void- Default
- —
- Requirement
- optional
- Prop
title- Type
string- Default
- —
- Requirement
- optional
- Prop
description- Type
string- Default
- —
- Requirement
- optional
- Prop
interactive- Type
boolean- Default
- —
- Requirement
- optional
- Prop
keyboardNavigation- Type
boolean- Default
- —
- Requirement
- optional
- Prop
theme- Type
PartialChartTheme- Default
- —
- Requirement
- optional
- Prop
animation- Type
ChartAnimationInput- 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
class- Type
string- Default
- —
- Requirement
- optional
- Prop
style- Type
string- Default
- —
- Requirement
- optional
Events
| Event | Payload |
|---|---|
onActiveDatumChange | (id: string | null) => void |
onHiddenSeriesChange | (ids: readonly string[]) => void |
Content regions
dataSummary
Import
import { IsoMatrixChart } from "@grassroot/charts-solid";
Props
Prop
Type
Default
Requirement
datareadonly IsoMatrixDatum[]—
required
columnsnumber—
optional
rowsnumber—
optional
onActiveDatumChange(id: string | null) => void—
optional
onHiddenSeriesChange(ids: readonly string[]) => void—
optional
classstring—
optional
styleJSX.CSSProperties—
optional
widthnumber—
optional
heightnumber—
optional
rendererChartRenderer—
optional
gpuBackendChartGpuBackend—
optional
rendererStrategyPartial<ChartRendererStrategy>—
optional
renderPlanMode"svg" | "host"—
optional
showGridboolean—
optional
- Prop
data- Type
readonly IsoMatrixDatum[]- Default
- —
- Requirement
- required
- Prop
columns- Type
number- Default
- —
- Requirement
- optional
- Prop
rows- Type
number- 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 |
|---|---|
onActiveDatumChange | (id: string | null) => void |
onHiddenSeriesChange | (ids: readonly string[]) => void |
Content regions
dataSummary