ARIA · table fallbackAccessibility
Canvas ARIA metadata is paired with a text summary and table fallback.
Graflume · Alpha
Compare declining stage totals and conversion loss in a funnel layout.
Chart family · Advanced families
Compare declining stage totals and conversion loss in a funnel layout.
funnel()graflume/completefunnelBasic implementation
Start with only the required data and family encoding. Expand the code to run the same example.
Compare declining stage totals and conversion loss in a funnel layout.
StatusLoading
minimal-implementationLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Common features
Use the tabs to compare header, tooltip, theme, legend, highlight, callout, selection, view controls, and accessibility one feature at a time. Hover over a data mark. On supported charts, move the pointer along the axis to see the nearest value. All exact values are available in the table below.
Add a chart title and supporting description inside the visualization.
StatusLoading
headerLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"title": {
"subtitle": "Funnel chart uses runnable data and options to demonstrate length funnel; neck configuration.",
"text": "Funnel"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"title": {
"subtitle": "Funnel chart uses runnable data and options to demonstrate length funnel; neck configuration.",
"text": "Funnel"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Reveal exact values from a mark or axis position. Authors can choose locale-aware date/time styles and a time zone with declarative options.
StatusLoading
tooltipLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"hover": true,
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Tooltip",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"hover": true,
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Tooltip",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Apply the current built-in theme from the selector and update every active example together.
StatusLoading
themeLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"theme": "graflume-light",
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"theme": "graflume-light",
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Explain the visual meaning of layers, categories, or continuous values.
StatusLoading
legendlegend · categories · categoryLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"legend": {
"field": "category",
"interactive": true,
"labels": {
"hide": "Hide",
"show": "Show"
},
"maxItems": 8,
"mode": "categories",
"orientation": "horizontal",
"position": "bottom",
"title": "Category",
"visible": true
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"legend": {
"field": "category",
"interactive": true,
"labels": {
"hide": "Hide",
"show": "Show"
},
"maxItems": 8,
"mode": "categories",
"orientation": "horizontal",
"position": "bottom",
"title": "Category",
"visible": true
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Emphasize a representative datum or spatial position to guide inspection.
StatusLoading
highlighthighlights[] · datum · categoryLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"highlights": [
{
"id": "manual-focus",
"padding": 7,
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
}
}
],
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"highlights": [
{
"id": "manual-focus",
"padding": 7,
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
}
}
],
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Show an explanatory callout with automatic collision avoidance and multilingual wrapping.
StatusLoading
calloutannotations[] · datum · category · callout · placement:autoLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"annotations": [
{
"connector": {
"visible": true
},
"detail": "Attach user-authored safe text to a datum, axis range, or normalized plot position.",
"id": "manual-callout",
"placement": "auto",
"style": {
"maxWidth": 220,
"padding": 8
},
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
},
"text": "Point and range highlights · Created a view"
}
],
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
}
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"annotations": [
{
"connector": {
"visible": true
},
"detail": "Attach user-authored safe text to a datum, axis range, or normalized plot position.",
"id": "manual-callout",
"placement": "auto",
"style": {
"maxWidth": 220,
"padding": 8
},
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
},
"text": "Point and range highlights · Created a view"
}
],
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
}
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Select and toggle data, then clear it from the background or Escape key.
StatusLoading
selectionselection · multiple · toggleLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"selection": {
"ariaLabel": "Interactive selection",
"clearOnBackground": true,
"clearOnEscape": true,
"highlight": {
"padding": 5
},
"key": "category",
"mode": "multiple",
"toggle": true
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"selection": {
"ariaLabel": "Interactive selection",
"clearOnBackground": true,
"clearOnEscape": true,
"highlight": {
"padding": 5
},
"key": "category",
"mode": "multiple",
"toggle": true
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Show or hide zoom, pan, reset, projection, fullscreen, and PNG export one menu at a time. Set controls: false to remove the entire toolbar.
StatusLoading
controlsLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Pair ARIA descriptions and keyboard guidance with a semantic data table.
StatusLoading
accessibilityLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Accessibility example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Accessibility example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Chart-specific features
These tabs come from Graflume's public catalog. Every mode owns runnable data, options, a Quick API, and source-backed feature claims.
Funnel chart uses runnable data and options to demonstrate length funnel; neck configuration.
StatusLoading
funnellength funnelneck configurationLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Funnel chart uses runnable data and options to demonstrate length funnel; neck configuration.",
"text": "Funnel"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Funnel chart uses runnable data and options to demonstrate length funnel; neck configuration.",
"text": "Funnel"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Funnel area chart uses runnable data and options to demonstrate area-proportional funnel; outside label solver.
StatusLoading
funnel-areaarea-proportional funneloutside label solverLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Funnel area chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Funnel area chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "area"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Funnel area chart uses runnable data and options to demonstrate area-proportional funnel; outside label solver.",
"text": "Funnel · Funnel area chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnelArea('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Funnel area chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Funnel area chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"mode": "area"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Funnel area chart uses runnable data and options to demonstrate area-proportional funnel; outside label solver.",
"text": "Funnel · Funnel area chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Depth funnel chart uses runnable data and options to demonstrate pyramid and depth-styled variants.
StatusLoading
funnel-3dpyramid and depth-styled variantsLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Depth funnel chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Depth funnel chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"variant": "funnel-3d"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Depth funnel chart uses runnable data and options to demonstrate pyramid and depth-styled variants.",
"text": "Funnel · Depth funnel chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel3d('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Depth funnel chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Depth funnel chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"variant": "funnel-3d"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Depth funnel chart uses runnable data and options to demonstrate pyramid and depth-styled variants.",
"text": "Funnel · Depth funnel chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Pyramid chart uses runnable data and options to demonstrate sorting and value labels.
StatusLoading
pyramidsorting and value labelsLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Pyramid chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Pyramid chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"variant": "pyramid"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Pyramid chart uses runnable data and options to demonstrate sorting and value labels.",
"text": "Funnel · Pyramid chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.pyramid('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Pyramid chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Pyramid chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"variant": "pyramid"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Pyramid chart uses runnable data and options to demonstrate sorting and value labels.",
"text": "Funnel · Pyramid chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Depth pyramid chart uses runnable data and options to demonstrate conversion/dropoff/cumulative semantics.
StatusLoading
pyramid-3dconversion/dropoff/cumulative semanticsLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Depth pyramid chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Depth pyramid chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"variant": "pyramid-3d"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Depth pyramid chart uses runnable data and options to demonstrate conversion/dropoff/cumulative semantics.",
"text": "Funnel · Depth pyramid chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.pyramid3d('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · Depth pyramid chart example"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · Depth pyramid chart",
"trigger": "mark"
}
},
"locale": "en",
"mark": {
"options": {
"variant": "pyramid-3d"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "Depth pyramid chart uses runnable data and options to demonstrate conversion/dropoff/cumulative semantics.",
"text": "Funnel · Depth pyramid chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Edge cases
Exercise numeric range, sparse structure, and large inputs with valid data. Each tab materializes data only when needed and never silently repairs invalid values.
Mix zero, very small finite values, and very large finite values to verify automatic domains, precision, and stable geometry. NaN and Infinity remain intentionally invalid. It applies 2 data-integrity rules that preserve finite values and axis domains.
StatusLoading
extreme-rangeextreme-smallextreme-largezerobudget:marks<=5Loading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 1e+12 |
| Explored a chart | 1 |
| Created a view | 1e-09 |
| Shared with a team | 0 |
| Returned in 30 days | 0 |
Browser API
const data = [
{
"category": "Visited",
"value": 1000000000000
},
{
"category": "Explored a chart",
"value": 1
},
{
"category": "Created a view",
"value": 1e-9
},
{
"category": "Shared with a team",
"value": 0
},
{
"category": "Returned in 30 days",
"value": 0
}
];
const options = {
"accessibility": {
"description": "A realistic product journey exposes the largest conversion loss. The example uses curated, deterministic data and exposes its exact values in a semantic table.",
"label": "Funnel"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"title": {
"subtitle": "edge case · range",
"text": "Funnel"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"accessibility": {
"description": "A realistic product journey exposes the largest conversion loss. The example uses curated, deterministic data and exposes its exact values in a semantic table.",
"label": "Funnel"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"title": {
"subtitle": "edge case · range",
"text": "Funnel"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Exercise only duplicate, missing, sparse, or out-of-order structures whose meaning is defined for this family. Broken references and malformed tuples are never disguised as successful examples. It applies 3 structural rules that preserve the meaning of missing, duplicate, and ordered values.
StatusLoading
irregular-structuretiesnullzero-baselinebudget:marks<=5Loading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | — |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": null
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "A realistic product journey exposes the largest conversion loss. The example uses curated, deterministic data and exposes its exact values in a semantic table.",
"label": "Funnel · Sparse and irregular structure"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"title": {
"subtitle": "edge case · structure",
"text": "Funnel · Sparse and irregular structure"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"accessibility": {
"description": "A realistic product journey exposes the largest conversion loss. The example uses curated, deterministic data and exposes its exact values in a semantic table.",
"label": "Funnel · Sparse and irregular structure"
},
"axes": {
"x": false,
"y": false
},
"height": 620,
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"title": {
"subtitle": "edge case · structure",
"text": "Funnel · Sparse and irregular structure"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Materialize a deterministic compact recipe only when this tab opens. Graflume's performance profile bounds mark count, hit testing, and animation work for the input size. It applies 6 high-volume rules for deterministic generation and bounded output. This family materializes 130,000 logical events and bounds rendered bar marks at 5,000.
StatusLoading
high-row-cardinalityall-input-rows-generatedall-input-rows-processeddeterministic-generationbounded-renderinginput:130000zoom-pan-resetbudget:bar-marks<=5000legend · categories · categoryhighlights[] · datum · categoryannotations[] · datum · category · callout · placement:autoLoading
Browser API
const recipe = {
"cardinality": {
"axes": {},
"sourceRows": 130000,
"unit": "events"
},
"expectedInvariants": [
"finite-json",
"stage-value-nonnegative",
"stage-value-nonincreasing"
],
"id": "categorical-events",
"initialView": {
"kind": "domain",
"zoom": 1
},
"outputBudget": {
"maximum": 5000,
"resource": "bar-marks"
},
"parameters": {
"explicitPerformance": true,
"family": "funnel",
"nullableFields": [
"value"
],
"positiveFields": [],
"scenario": "volume",
"valueFields": [
"value"
],
"valuePolicy": "descending-nonnegative"
},
"preview": {
"maximumRows": 12,
"method": "top-groups"
},
"reduction": {
"method": "group-sum-top-k",
"stage": "pre-aggregate"
},
"seed": 2324560563,
"shape": "rows",
"version": 2
};
const { data, previewRows, plan } = Graflume.materializeDemoRecipe(recipe);
const options = {
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · High data volume"
},
"annotations": [
{
"connector": {
"visible": true
},
"detail": "Attach user-authored safe text to a datum, axis range, or normalized plot position.",
"id": "manual-callout",
"placement": "auto",
"style": {
"maxWidth": 220,
"padding": 8
},
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
},
"text": "Point and range highlights · Created a view"
}
],
"axes": {
"x": false,
"y": false
},
"create": {
"adaptive": {
"environment": {
"rowCount": 130000
},
"largeDataNavigation": true,
"profiles": "auto"
}
},
"height": 620,
"highlights": [
{
"id": "manual-focus",
"padding": 7,
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
}
}
],
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · High data volume",
"trigger": "mark"
}
},
"legend": {
"field": "category",
"interactive": true,
"labels": {
"hide": "Hide",
"show": "Show"
},
"maxItems": 8,
"mode": "categories",
"orientation": "horizontal",
"position": "bottom",
"title": "Category",
"visible": true
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"performance": "ultra",
"theme": "graflume-light",
"title": {
"subtitle": "A realistic product journey exposes the largest conversion loss · 130,000 logical rows, screen-aware detail",
"text": "Funnel · High data volume"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"accessibility": {
"description": "Zoom and pan inspect the rendered surface without changing data axes or values. When playback controls are available, they move through real steps in the order each unique value first appears in the source data.",
"label": "Funnel · High data volume"
},
"annotations": [
{
"connector": {
"visible": true
},
"detail": "Attach user-authored safe text to a datum, axis range, or normalized plot position.",
"id": "manual-callout",
"placement": "auto",
"style": {
"maxWidth": 220,
"padding": 8
},
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
},
"text": "Point and range highlights · Created a view"
}
],
"axes": {
"x": false,
"y": false
},
"create": {
"adaptive": {
"environment": {
"rowCount": 130000
},
"largeDataNavigation": true,
"profiles": "auto"
}
},
"height": 620,
"highlights": [
{
"id": "manual-focus",
"padding": 7,
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
}
}
],
"interaction": {
"controls": {
"annotations": false,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel · High data volume",
"trigger": "mark"
}
},
"legend": {
"field": "category",
"interactive": true,
"labels": {
"hide": "Hide",
"show": "Show"
},
"maxItems": 8,
"mode": "categories",
"orientation": "horizontal",
"position": "bottom",
"title": "Category",
"visible": true
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"performance": "ultra",
"theme": "graflume-light",
"title": {
"subtitle": "A realistic product journey exposes the largest conversion loss · 130,000 logical rows, screen-aware detail",
"text": "Funnel · High data volume"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Extreme environments
Combine container size, input method, display capability, and user preference instead of guessing a device name. Compare mobile, watch, e-paper, monochrome, dot-matrix, and standards-based extreme environments on the same chart.
Reflow axes, legends, descriptions, and controls from the available container size.
960×540 · adaptive.profiles=responsive-fluidzoom-reflowshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialPrioritize 44px touch targets, tap tooltips, and collapsed secondary information on a narrow portrait screen.
390×844 · adaptive.profiles=mobile-touchzoom-reflowcoarse-touchvirtual-keyboardshape-rectangledisplay-colorinput-coarsemotion-fullrenderer-canvas-spatialKeep essential marks, values, and stepped controls on a tiny or round screen, with the remaining detail reflowed below.
184×224 · adaptive.profiles=smartwatchzoom-reflowreduced-effectscoarse-touchlow-resourcecutout-roundshape-rounddisplay-colorinput-coarsemotion-reducedrenderer-canvas-spatialviewport-tinyPrefer stable frames, strong contrast, and the data table for low-refresh e-paper displays.
758×1024 · adaptive.profiles=ebook-paperprint-pagedreduced-effectslow-resourceshape-pageddisplay-e-inkinput-keyboardmotion-staticrenderer-canvas-spatialUse strokes, markers, patterns, labels, and the table so color is never the only distinction.
640×400 · adaptive.profiles=monochromereduced-effectsshape-rectangledisplay-monochromeinput-finemotion-reducedrenderer-canvas-spatialReduce decoration and mark density while using strong strokes, integer labels, and stepped zoom on a low-resolution display.
320×240 · adaptive.profiles=dot-matrixzoom-reflowreduced-effectskeyboard-switchlow-resourceshape-rectangledisplay-gridinput-keyboardmotion-staticrenderer-canvas-spatialviewport-tinyReflow prose to one dimension at the 320 CSS px equivalent while retaining chart-local zoom and pan.
320×480 · adaptive.profiles=zoom-reflowzoom-reflowshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialKeep the chart and explanation in independent viewport segments without crossing the hinge.
720×640 · adaptive.profiles=foldable-dualfoldable-dualshape-dualdisplay-colorinput-finemotion-fullrenderer-canvas-spatialProvide strong focus indication and D-pad, Enter, and Escape operation on a hoverless distance display.
1920×1080 · adaptive.profiles=tv-remotetv-remoteshape-rectangledisplay-colorinput-remotemotion-fullrenderer-canvas-spatialPair a static chart with its description and table, hide controls, and avoid page breaks through the figure.
794×1123 · adaptive.profiles=print-pagedprint-pagedshape-pageddisplay-colorinput-finemotion-staticrenderer-canvas-spatialHonor system colors and borders while retaining patterns, markers, and text as redundant cues.
640×400 · adaptive.profiles=forced-colorsforced-colorsshape-rectangledisplay-high-contrastinput-finemotion-fullrenderer-canvas-spatialComplete transitions immediately and use opaque surfaces and deferred work to reduce motion and transparency load.
640×400 · adaptive.profiles=reduced-effectsreduced-effectsshape-rectangledisplay-colorinput-finemotion-reducedrenderer-canvas-spatialInspect values by tap without hover, keep targets at least 44px, and expose explicit zoom buttons.
390×844 · adaptive.profiles=coarse-touchcoarse-touchshape-rectangledisplay-colorinput-coarsemotion-fullrenderer-canvas-spatialReach every operation with Tab, arrows, Enter, Space, and Escape, with no drag-only action.
640×400 · adaptive.profiles=keyboard-switchkeyboard-switchshape-rectangledisplay-colorinput-keyboardmotion-fullrenderer-canvas-spatialPrefer progressive rendering, sampling, cancellable work, and a static fallback under constrained memory or connectivity.
640×400 · adaptive.profiles=low-resourcelow-resourceshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialFollow RTL logical flow for prose and tabs while keeping axes, code, and data identifiers in technical LTR order.
640×400 · adaptive.profiles=rtlrtlshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialReflow vertical prose while keeping the chart and technical surfaces in an independent horizontal panel.
640×400 · adaptive.profiles=vertical-writingvertical-writingshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialCap chart width instead of stretching indefinitely, using panelization and readable labels on ultrawide or projected surfaces.
1920×720 · adaptive.profiles=ultrawide-projectionultrawide-projectionshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialProvide short and long descriptions, a semantic table, and status so Canvas or color is never the sole information path.
640×400 · adaptive.profiles=screenreader-braillescreenreader-brailleshape-nonvisualdisplay-colorinput-nonvisualmotion-fullrenderer-canvas-spatialA verified static preview, description, and collapsible row-data table preserve the essential information when scripting is unavailable.
640×400 · adaptive.profiles=no-scriptno-scriptshape-nonvisualdisplay-colorinput-finemotion-staticrenderer-static-fallbackFall back safely to the ordinary 2D or WebGL panel when XR APIs are absent, duplicating depth cues in text and the table.
640×400 · adaptive.profiles=spatial-xrspatial-xrshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialInset titles, marks, and controls around safe areas and round display bounds so they are not clipped.
184×224 · adaptive.profiles=cutout-roundcutout-roundshape-rounddisplay-colorinput-finemotion-fullrenderer-canvas-spatialviewport-tinyReflow focus controls, the chart, and the active explanation when a virtual keyboard reduces the visual viewport.
390×560 · adaptive.profiles=virtual-keyboardvirtual-keyboardshape-rectangledisplay-colorinput-finemotion-fullrenderer-canvas-spatialChoose a profile above to preserve the same data and ChartSpec while reconfiguring the chart for display size, input method, display capability, and user preference.
StatusLoading
adaptivecapability-drivenno-user-agent-branchinglegend · categories · categoryhighlights[] · datum · categoryannotations[] · datum · category · callout · placement:autoselection · multiple · toggleLoading
Row data and zero-copy TypedArray columns share one data contract.
categoryordinal | valuequantitative |
|---|---|
| Visited | 12000 |
| Explored a chart | 8450 |
| Created a view | 5120 |
| Shared with a team | 2940 |
| Returned in 30 days | 1860 |
Browser API
const data = [
{
"category": "Visited",
"value": 12000
},
{
"category": "Explored a chart",
"value": 8450
},
{
"category": "Created a view",
"value": 5120
},
{
"category": "Shared with a team",
"value": 2940
},
{
"category": "Returned in 30 days",
"value": 1860
}
];
const options = {
"accessibility": {
"description": "A realistic product journey exposes the largest conversion loss. The example uses curated, deterministic data and exposes its exact values in a semantic table.",
"label": "Funnel chart: A realistic product journey exposes the largest conversion loss"
},
"annotations": [
{
"connector": {
"visible": true
},
"detail": "Attach user-authored safe text to a datum, axis range, or normalized plot position.",
"id": "manual-callout",
"placement": "auto",
"style": {
"maxWidth": 220,
"padding": 8
},
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
},
"text": "Point and range highlights · Created a view"
}
],
"axes": {
"x": false,
"y": false
},
"create": {
"adaptive": {
"profiles": "auto"
}
},
"height": 620,
"highlights": [
{
"id": "manual-focus",
"padding": 7,
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
}
}
],
"interaction": {
"controls": {
"annotations": true,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"selection": {
"ariaLabel": "Interactive selection",
"clearOnBackground": true,
"clearOnEscape": true,
"highlight": {
"padding": 5
},
"key": "category",
"mode": "multiple",
"toggle": true
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel",
"trigger": "mark"
}
},
"legend": {
"field": "category",
"interactive": true,
"labels": {
"hide": "Hide",
"show": "Show"
},
"maxItems": 8,
"mode": "categories",
"orientation": "horizontal",
"position": "bottom",
"title": "Category",
"visible": true
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "A realistic product journey exposes the largest conversion loss",
"text": "Funnel chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
};
Graflume.funnel('#chart', data, options);Portable schema
{
"accessibility": {
"description": "A realistic product journey exposes the largest conversion loss. The example uses curated, deterministic data and exposes its exact values in a semantic table.",
"label": "Funnel chart: A realistic product journey exposes the largest conversion loss"
},
"annotations": [
{
"connector": {
"visible": true
},
"detail": "Attach user-authored safe text to a datum, axis range, or normalized plot position.",
"id": "manual-callout",
"placement": "auto",
"style": {
"maxWidth": 220,
"padding": 8
},
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
},
"text": "Point and range highlights · Created a view"
}
],
"axes": {
"x": false,
"y": false
},
"create": {
"adaptive": {
"profiles": "auto"
}
},
"height": 620,
"highlights": [
{
"id": "manual-focus",
"padding": 7,
"target": {
"field": "category",
"type": "datum",
"value": "Created a view"
}
}
],
"interaction": {
"controls": {
"annotations": true,
"export": true,
"fullscreen": true,
"labels": {
"controls": "Chart controls",
"enterFullscreen": "Enter fullscreen",
"exitFullscreen": "Exit fullscreen",
"exportPng": "Download PNG",
"hideAnnotations": "Hide callouts",
"loop": "Loop playback",
"nextFrame": "Next frame",
"pause": "Pause",
"play": "Play",
"previousFrame": "Previous frame",
"reset": "Reset view",
"seek": "Playback position",
"showAnnotations": "Show callouts",
"speed": "Playback speed",
"zoomIn": "Zoom in",
"zoomOut": "Zoom out"
},
"playback": false,
"reset": true,
"zoom": true
},
"hover": true,
"navigation": {
"drag": true,
"keyboard": true,
"maxZoom": 6,
"minZoom": 1,
"pinch": true,
"wheel": "modifier"
},
"selection": {
"ariaLabel": "Interactive selection",
"clearOnBackground": true,
"clearOnEscape": true,
"highlight": {
"padding": 5
},
"key": "category",
"mode": "multiple",
"toggle": true
},
"tooltip": {
"fields": [
{
"field": "category",
"format": "auto",
"label": "Category"
},
{
"field": "value",
"format": "number",
"label": "Value"
}
],
"title": "Funnel",
"trigger": "mark"
}
},
"legend": {
"field": "category",
"interactive": true,
"labels": {
"hide": "Hide",
"show": "Show"
},
"maxItems": 8,
"mode": "categories",
"orientation": "horizontal",
"position": "bottom",
"title": "Category",
"visible": true
},
"locale": "en",
"mark": {
"options": {
"mode": "default"
}
},
"padding": {
"top": 52
},
"theme": "graflume-light",
"title": {
"subtitle": "A realistic product journey exposes the largest conversion loss",
"text": "Funnel chart"
},
"width": "container",
"x": {
"field": "category",
"title": "Journey stage",
"type": "ordinal"
},
"y": {
"field": "value",
"title": "Teams",
"type": "quantitative"
}
}Catalog
The source-controlled catalog maps callable modes in this family and compatibility identifiers to their canonical modes. This table contains executable entries only.
5 modes · 4 compatibility identifiers
| ID | Name | Quick API | mode | mark | renderer |
|---|---|---|---|---|---|
funnel | Funnel chart | funnel() | default | funnel | canvas |
funnel-area | Funnel area chart | funnelArea() | area | funnel | canvas |
funnel-3d | Depth funnel chart | funnel3d() | funnel-3d | pyramid | canvas |
pyramid | Pyramid chart | pyramid() | pyramid | pyramid | canvas |
pyramid-3d | Depth pyramid chart | pyramid3d() | pyramid-3d | pyramid | canvas |
| Identifier | Canonical mode ID |
|---|---|
funnel | funnel |
funnel3d | funnel-3d |
pyramid | pyramid |
pyramid3d | pyramid-3d |
Manual
ARIA · table fallbackCanvas ARIA metadata is paired with a text summary and table fallback.
standard · large · ultraStandard, large, and ultra profiles bound rendering work.