igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
36 lines (35 loc) • 1.42 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { AverageTrueRangeIndicator } from "./AverageTrueRangeIndicator";
/**
* Represents a IgxDataChartComponent Average True Range indicator series.
* Default required members: High, Low, Close
*
* You can use the `AverageTrueRangeIndicator` to measures a security's degree of price movement or volatility within a given period of time.
*/
export declare class IgcAverageTrueRangeIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): AverageTrueRangeIndicator;
/**
* @hidden
*/
get i(): AverageTrueRangeIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcAverageTrueRangeIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the moving average period for the current AverageTrueRangeSeries object.
* The typical, and initial, value for AverageTrueRange 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);
}