UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

36 lines (35 loc) 1.46 kB
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { AverageDirectionalIndexIndicator } from "./AverageDirectionalIndexIndicator"; /** * Represents a IgxDataChartComponent Average Directional indicator series. * Default required members: High, Low, Close * * You can use the `AverageDirectionalIndexIndicator` to measures trend strength without regard to trend direction. */ export declare class IgcAverageDirectionalIndexIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): AverageDirectionalIndexIndicator; /** * @hidden */ get i(): AverageDirectionalIndexIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcAverageDirectionalIndexIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets or sets the moving average period for the current AverageDirectionalIndexIndicator object. * The typical, and initial, value for AverageDirectionalIndexIndicator periods is 14. * * You can use the `Period` to set the moving average. * * ```ts * this.series.period = 14; * ``` */ get period(): number; set period(v: number); }