UNPKG

igniteui-webcomponents-charts

Version:

Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.

59 lines (58 loc) 1.91 kB
import { LegendItemBadgeShape } from "igniteui-webcomponents-core"; import { DataLegendStylingRowEventArgs as DataLegendStylingRowEventArgs_internal } from "./DataLegendStylingRowEventArgs"; /** * Represents styling event args for a row in data legend */ export declare class IgcDataLegendStylingRowEventArgs { 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); /** * 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); /** * Gets or sets whether the whole row is visible in the Data Legend */ get isRowVisible(): boolean; set isRowVisible(v: boolean); /** * Gets index of series in the chart */ get seriesIndex(): number; set seriesIndex(v: number); /** * 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); }