@mozaic-ds/chart
Version:
<p align="center"> <img alt="ADEO Design system - Chart library" src="./.storybook/assets/adeo-design-system-chart-banner.svg" /> </p>
15 lines (10 loc) • 321 B
text/typescript
import { ChartData, Plugin } from 'chart.js';
type AnyObject = Record<string, any>;
export interface DoughnutData {
tooltipLabel?: number;
value: number;
unit: string;
rate: number;
}
export type DoughnutPlugin = Plugin<'doughnut', AnyObject>;
export type DoughnutChartData = ChartData<'doughnut', number[]>;