igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
36 lines (35 loc) • 1.33 kB
TypeScript
import { IgcFinancialCalculationDataSource } from './igc-financial-calculation-data-source';
import { IgcFinancialCalculationSupportingCalculations } from './igc-financial-calculation-supporting-calculations';
import { FinancialEventArgs as FinancialEventArgs_internal } from "./FinancialEventArgs";
/**
* Parameterizes a financial calculation event.
*/
export declare class IgcFinancialEventArgs {
protected _implementation: any;
get i(): FinancialEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
get basedOn(): string[];
set basedOn(v: string[]);
/**
* The beginning position that should be calculated from.
*/
get position(): number;
set position(v: number);
/**
* The number of positions that should be calculated from the start.
*/
get count(): number;
set count(v: number);
/**
* The data to use for the calculation.
*/
get dataSource(): IgcFinancialCalculationDataSource;
set dataSource(v: IgcFinancialCalculationDataSource);
/**
* The supporting calculations to use in the calculation.
*/
get supportingCalculations(): IgcFinancialCalculationSupportingCalculations;
set supportingCalculations(v: IgcFinancialCalculationSupportingCalculations);
}