@carbon/charts
Version:
Carbon charting components
35 lines (34 loc) • 678 B
TypeScript
export declare const simpleBoxplotData: {
group: string;
key: string;
value: number;
}[];
export declare const simpleBoxplotOptions: {
title: string;
axes: {
bottom: {
mapsTo: string;
};
left: {
scaleType: string;
mapsTo: string;
};
};
};
export declare const simpleVerticalBoxplotData: {
group: string;
key: string;
value: number;
}[];
export declare const simpleVerticalBoxplotOptions: {
title: string;
axes: {
left: {
mapsTo: string;
};
bottom: {
scaleType: string;
mapsTo: string;
};
};
};