UNPKG

igniteui-webcomponents-charts

Version:

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

41 lines (40 loc) 1.7 kB
import { IndicatorDisplayType } from "./IndicatorDisplayType"; import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component"; import { RelativeStrengthIndexIndicator } from "./RelativeStrengthIndexIndicator"; /** * Represents a IgxDataChartComponent Relative Strength Index indicator series. * Default required members: Close * * The `RelativeStrengthIndexIndicator` class represents Relative Strength Index indicator series for the IgxDataChartComponent . */ export declare class IgcRelativeStrengthIndexIndicatorComponent extends IgcStrategyBasedIndicatorComponent { protected createImplementation(): RelativeStrengthIndexIndicator; /** * @hidden */ get i(): RelativeStrengthIndexIndicator; constructor(); connectedCallback(): void; disconnectedCallback(): void; private static _observedAttributesIgcRelativeStrengthIndexIndicatorComponent; static get observedAttributes(): string[]; static htmlTagName: string; protected static _isElementRegistered: boolean; static register(): void; /** * Gets default display type for the current Financial Indicator */ get defaultDisplayType(): IndicatorDisplayType; /** * Gets or sets the moving average period for the current RelativeStrengthIndexIndicator object. * The typical, and initial, value for RSI periods is 14. * * You can use the `period` property for the current RelativeStrengthIndexIndicator object. * * ```ts * this.series.period = 30; * ``` */ get period(): number; set period(v: number); }