igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
41 lines (40 loc) • 1.63 kB
TypeScript
import { IndicatorDisplayType } from "./IndicatorDisplayType";
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { ForceIndexIndicator } from "./ForceIndexIndicator";
/**
* Represents a IgxDataChartComponent Force Index indicator series.
* Default required members: Close, Volume
*
* The `ForceIndexIndicator` represents a IgxDataChartComponent Force Index indicator series.
*/
export declare class IgcForceIndexIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): ForceIndexIndicator;
/**
* @hidden
*/
get i(): ForceIndexIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcForceIndexIndicatorComponent;
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 AverageTrueRangeSeries object.
* The typical, and initial, value for ForceIndiex periods is 0.
*
* You can use the `period` property to get the moving average period of the current FullStochasticOscillatorIndicator object
*
* ```ts
* this.series.period = 30;
* ```
*/
get period(): number;
set period(v: number);
}