UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

22 lines (21 loc) 1.3 kB
import { DoubleTrendLineManagerBase } from "./DoubleTrendLineManagerBase"; import { IPreparesCategoryTrendline } from "./IPreparesCategoryTrendline"; import { TrendLineManagerType } from "./TrendLineManagerType"; import { IHasCategoryTrendline } from "./IHasCategoryTrendline"; import { PreparationParams } from "./PreparationParams"; import { ValuesHolder } from "./ValuesHolder"; import { List$1 } from "igniteui-angular-core"; import { Point, IList$1, Type } from "igniteui-angular-core"; import { TrendResolutionParams } from "./TrendResolutionParams"; import { TrendLineType } from "igniteui-angular-core"; /** * @hidden */ export declare abstract class CategoryTrendLineManagerBase extends DoubleTrendLineManagerBase implements IPreparesCategoryTrendline { static $t: Type; protected get_g$a(): TrendLineManagerType; get g$a(): TrendLineManagerType; prepareLine(a: IHasCategoryTrendline, b: PreparationParams, c: ValuesHolder, d: number): void; prepareLine1(a: IHasCategoryTrendline, b: List$1<Point>, c: PreparationParams, d: ValuesHolder, e: number): void; abstract prepareLineCore(a: List$1<Point>, b: TrendLineType, c: IList$1<number>, d: number, e: (arg1: number) => number, f: (arg1: number) => number, g: TrendResolutionParams): void; }