igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
28 lines (27 loc) • 955 B
TypeScript
import { IgcLegendBaseComponent } from './igc-legend-base-component';
import { Legend } from "./Legend";
import { FinancialLegend } from './FinancialLegend';
/**
* Represents a legend that displays information about each series, most often used in financial charting.
*/
export declare class IgcFinancialLegendComponent extends IgcLegendBaseComponent {
private container;
private initializeContent;
constructor();
private _wrapper;
destroy(): void;
protected createImplementation(): Legend;
get i(): FinancialLegend;
private _disconnected;
disconnectedCallback(): void;
connectedCallback(): void;
private static _observedAttributesIgcFinancialLegendComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
/**
* Gets if the legend is a financial legend.
*/
get isFinancial(): boolean;
}