igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
33 lines (32 loc) • 1.48 kB
TypeScript
import { IndicatorDisplayType } from "./IndicatorDisplayType";
import { IgcItemwiseStrategyBasedIndicatorComponent } from "./igc-itemwise-strategy-based-indicator-component";
import { MarketFacilitationIndexIndicator } from "./MarketFacilitationIndexIndicator";
/**
* Represents a IgxDataChartComponent Market Facilitation Index indicator series.
* The Market Facilitation Index (MFI) indicator is represented by
* the difference of the high and the low for a bar divided by the volume.
* Default required members: High, Low, Volume
*
* The Market Facilitation Index (MFI) indicator is represented by the difference of the high and the low for a bar divided by the volume.
*
* Example:
*/
export declare class IgcMarketFacilitationIndexIndicatorComponent extends IgcItemwiseStrategyBasedIndicatorComponent {
protected createImplementation(): MarketFacilitationIndexIndicator;
/**
* @hidden
*/
get i(): MarketFacilitationIndexIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcMarketFacilitationIndexIndicatorComponent;
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;
}