igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
27 lines (26 loc) • 1.41 kB
TypeScript
import { IgcItemwiseStrategyBasedIndicatorComponent } from "./igc-itemwise-strategy-based-indicator-component";
import { WeightedCloseIndicator } from "./WeightedCloseIndicator";
/**
* Represents a IgxDataChartComponent Weigted Close indicator series.
* The weighted close indicator shows an average of the high low and close
* for a day but with the closing price counted twice in the average.
* Default required members: High, Low, Close
*
* The `WeightedCloseIndicator` is similar to the `TypicalPriceIndicator` in that it represents an average of the high price, low price, and closing price for a day.
* However, with the `WeightedCloseIndicator`, more emphasis is placed on the closing price and it is included twice when calculating the arithmetic average.
*/
export declare class IgcWeightedCloseIndicatorComponent extends IgcItemwiseStrategyBasedIndicatorComponent {
protected createImplementation(): WeightedCloseIndicator;
/**
* @hidden
*/
get i(): WeightedCloseIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcWeightedCloseIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
}