igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
17 lines (16 loc) • 600 B
TypeScript
import { Base, Type } from "igniteui-angular-core";
import { IHasCategoryTrendline } from "./IHasCategoryTrendline";
import { IPreparesCategoryTrendline } from "./IPreparesCategoryTrendline";
import { TrendLineType } from "igniteui-angular-core";
/**
* @hidden
*/
export declare class DefaultCategoryTrendlineHost extends Base implements IHasCategoryTrendline {
static $t: Type;
constructor();
private a;
get trendlinePreparer(): IPreparesCategoryTrendline;
get trendLineType(): TrendLineType;
get trendLinePeriod(): number;
get isVertical(): boolean;
}