igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
40 lines (39 loc) • 1.17 kB
TypeScript
import { DataLegendSummaryEventArgs as DataLegendSummaryEventArgs_internal } from "./DataLegendSummaryEventArgs";
/**
* Represents event argument for DataLegendSummaryCalculationCustom
*/
export declare class IgcDataLegendSummaryEventArgs {
protected _implementation: any;
/**
* @hidden
*/
get i(): DataLegendSummaryEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets actual values in the current a column
*/
get columnValues(): number[];
set columnValues(v: number[]);
/**
* Gets member path to identify a column
*/
get columnMemberPath(): string;
set columnMemberPath(v: string);
/**
* Gets or sets summary values displayed below data column
*/
get summaryValue(): number;
set summaryValue(v: number);
/**
* Gets or sets text displayed or right side of SummaryValue
*/
get summaryUnits(): string;
set summaryUnits(v: string);
/**
* Gets or sets text displayed or left side of SummaryValue
*/
get summaryLabel(): string;
set summaryLabel(v: string);
}