igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
19 lines (18 loc) • 518 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
* @hidden
*/
export interface ICoalescingModerator {
ensureSum(): void;
readonly othersValue: number;
getNormalizingValueAtIndex(a: number, b: number): number;
isOthersValue(a: number): boolean;
readonly hasOthersCategory: boolean;
readonly othersIndex: number;
readonly itemsCount: number;
readonly normalizationMayContainUnknowns: boolean;
}
/**
* @hidden
*/
export declare let ICoalescingModerator_$type: Type;