igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
58 lines (57 loc) • 2.2 kB
TypeScript
import { IgcSeriesComponent } from "./igc-series-component";
import { TrendLineType } from "igniteui-webcomponents-core";
import { IgcAnnotationLayerComponent } from "./igc-annotation-layer-component";
import { TrendLineLayer } from "./TrendLineLayer";
/**
* Represents the class of the value overlay. The value overlay is a line or circle representing a value on an axis.
*/
export declare class IgcTrendLineLayerComponent extends IgcAnnotationLayerComponent {
protected createImplementation(): TrendLineLayer;
/**
* @hidden
*/
get i(): TrendLineLayer;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcTrendLineLayerComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
get isAnnotationLayer(): boolean;
get isLineOnly(): boolean;
/**
* Gets or sets the series to target this annotation to.
*/
get targetSeries(): IgcSeriesComponent;
set targetSeries(v: IgcSeriesComponent);
private _targetSeriesName;
/**
* Gets or sets the name to use to resolve targetSeries from markup.
*/
get targetSeriesName(): string;
set targetSeriesName(v: string);
/**
* Gets the actual series being targeted by this annotation.
*/
get actualTargetSeries(): IgcSeriesComponent;
set actualTargetSeries(v: IgcSeriesComponent);
/**
* Gets or sets the trend type for the current series object.
*/
get trendLineType(): TrendLineType;
set trendLineType(v: TrendLineType);
/**
* Gets or sets the trend line period for the target series.
* The typical, and initial, value for trend line period is 7.
*/
get trendLinePeriod(): number;
set trendLinePeriod(v: number);
get isUsableInLegend(): boolean;
bindSeries(series: IgcSeriesComponent[]): void;
findByName(name: string): any;
protected _styling(container: any, component: any, parent?: any): void;
onApplyTemplate(): void;
getManagerIdentifier(): string;
}