igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
36 lines (35 loc) • 1.27 kB
TypeScript
import { IgcStrategyBasedIndicatorComponent } from "./igc-strategy-based-indicator-component";
import { TRIXIndicator } from "./TRIXIndicator";
/**
* Represents a IgxDataChartComponent TRIX indicator series.
* Default required members: Close
*
* The `TRIXIndicator` class specify the series as Trix Indicator series.
*/
export declare class IgcTRIXIndicatorComponent extends IgcStrategyBasedIndicatorComponent {
protected createImplementation(): TRIXIndicator;
/**
* @hidden
*/
get i(): TRIXIndicator;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcTRIXIndicatorComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets or sets the moving average period for the current TRIXIndicator object.
* The typical, and initial, value for TRIX periods is 15.
*
* The `Period` property is used for moving average period of the current TRIXIndicator object.
*
* ```ts
* this.series.period = 30;
* ```
*/
get period(): number;
set period(v: number);
}