Files
releases/docs/src/components/charts/index.js
T
Charlie Egan e2acecee3e website: Display 2025 survey results on the website (#8258)
* Add survey data
* Add survey results pages with recharts for plots

Some simple cross year comparisons have been added too where data was available
for the inspection of trends.

Signed-off-by: Charlie Egan <charlie_egan@apple.com>
2026-01-29 12:15:55 +01:00

16 lines
420 B
JavaScript

import BarChart from './BarChart';
import StackedBarChart from './StackedBarChart';
import TextList from './TextList';
import HorizontalBarChart from './HorizontalBarChart';
export const chartRegistry = {
'bar': BarChart,
'stacked-bar': StackedBarChart,
'text-list': TextList,
'horizontal-bar': HorizontalBarChart,
};
export function getChartComponent(chartType) {
return chartRegistry[chartType] || null;
}