igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
52 lines (51 loc) • 1.83 kB
TypeScript
import { IgxStrategyBasedIndicatorComponent } from "./igx-strategy-based-indicator-component";
import { PriceVolumeTrendIndicator } from "./PriceVolumeTrendIndicator";
import * as i0 from "@angular/core";
/**
* Represents a IgxDataChartComponent Price Volume Trend Indicator series.
* Default required members: Volume, Close
*
* You can use the `PriceVolumeTrendIndicator` to measure money flow by adding or subtracting a portion of the daily volume.
*
* ```html
* <igx-data-chart
* [dataSource]="data" >
* <igx-category-x-axis
* label="label"
* #xAxis>
* </igx-category-x-axis>
* <igx-numeric-y-axis
* #yAxis>
* </igx-numeric-y-axis>
* <igx-price-volume-trend-indicator
* [xAxis]="xAxis"
* [yAxis]="yAxis"
* openMemberPath="open"
* highMemberPath="high"
* lowMemberPath="low"
* closeMemberPath="close">
* </igx-price-volume-trend-indicator>
* </igx-data-chart>
* ```
*
* ```ts
* let series = new IgxPriceVolumeTrendIndicatorComponent();
* series.xAxis = this.xAxis;
* series.yAxis = this.yAxis;
* series.openMemberPath = "open";
* series.highMemberPath = "high";
* series.lowMemberPath = "low";
* series.closeMemberPath = "close";
* this.chart.series.add(series);
* ```
*/
export declare class IgxPriceVolumeTrendIndicatorComponent extends IgxStrategyBasedIndicatorComponent {
protected createImplementation(): PriceVolumeTrendIndicator;
/**
* @hidden
*/
get i(): PriceVolumeTrendIndicator;
constructor();
static ɵfac: i0.ɵɵFactoryDeclaration<IgxPriceVolumeTrendIndicatorComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<IgxPriceVolumeTrendIndicatorComponent, "igx-price-volume-trend-indicator", never, {}, {}, never, never>;
}