igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
19 lines (18 loc) • 506 B
TypeScript
import { Type } from "igniteui-webcomponents-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;