igniteui-angular-charts
Version:
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
63 lines (62 loc) • 2.16 kB
TypeScript
import { LegendItemBadgeShape } from "igniteui-angular-core";
import { DataLegendStylingRowEventArgs as DataLegendStylingRowEventArgs_internal } from "./DataLegendStylingRowEventArgs";
/**
* Represents styling event args for a row in data legend
*/
export declare class IgxDataLegendStylingRowEventArgs {
protected createImplementation(): DataLegendStylingRowEventArgs_internal;
protected _implementation: any;
/**
* @hidden
*/
get i(): DataLegendStylingRowEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets or sets shape of legend badge in the Data Legend
* This setting applies only to styling series rows
*/
get badgeShape(): LegendItemBadgeShape;
set badgeShape(v: LegendItemBadgeShape);
static ngAcceptInputType_badgeShape: LegendItemBadgeShape | string;
/**
* Gets or sets whether the legend badge is visible in the Data Legend
* This setting applies only to styling series rows
*/
get isBadgeVisible(): boolean;
set isBadgeVisible(v: boolean);
static ngAcceptInputType_isBadgeVisible: boolean | string;
/**
* Gets or sets whether the whole row is visible in the Data Legend
*/
get isRowVisible(): boolean;
set isRowVisible(v: boolean);
static ngAcceptInputType_isRowVisible: boolean | string;
/**
* Gets index of series in the chart
*/
get seriesIndex(): number;
set seriesIndex(v: number);
static ngAcceptInputType_seriesIndex: number | string;
/**
* Gets title of series in the chart
*/
get seriesTitle(): string;
set seriesTitle(v: string);
/**
* Gets or sets title text displayed in a row of Data Legend
*/
get titleText(): string;
set titleText(v: string);
/**
* Gets the group name associated with a row of Data Legend
*/
get groupName(): string;
set groupName(v: string);
/**
* Gets or sets color of title text
*/
get titleTextColor(): string;
set titleTextColor(v: string);
}