sryd-charts-enterprise
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
10 lines (9 loc) • 368 B
TypeScript
type ValueType = number | string | Date | undefined;
export type GroupingValueType = {
value: ValueType;
groupPercentage: number;
};
export type PointType = ValueType | GroupingValueType;
export declare function getGrouping(d: PointType | undefined): GroupingValueType;
export declare function getGroupingValue(d: PointType | undefined): ValueType;
export {};