@carbon/charts
Version:
Carbon charting components
54 lines (53 loc) • 1.04 kB
TypeScript
export declare const donutData: {
group: string;
value: number;
}[];
export declare const donutOptions: {
title: string;
resizable: boolean;
donut: {
center: {
label: string;
};
};
};
export declare const donutCenteredData: {
group: string;
value: number;
}[];
export declare const donutCenteredOptions: {
title: string;
resizable: boolean;
legend: {
alignment: string;
};
donut: {
center: {
label: string;
};
alignment: string;
};
};
export declare const donutEmptyStateData: any[];
export declare const donutEmptyStateOptions: {
title: string;
resizable: boolean;
donut: {
center: {
label: string;
};
};
};
export declare const donutSkeletonData: any[];
export declare const donutSkeletonOptions: {
title: string;
resizable: boolean;
donut: {
center: {
label: string;
};
};
data: {
loading: boolean;
};
};