igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
21 lines (20 loc) • 788 B
TypeScript
import { IgcLegendBaseComponent } from "./igc-legend-base-component";
import { ScaleLegend } from "./ScaleLegend";
/**
* Represents a legend that indicates the size and the color scale for a collection of series.
*/
export declare class IgcScaleLegendComponent extends IgcLegendBaseComponent {
protected createImplementation(): ScaleLegend;
/**
* @hidden
*/
get i(): ScaleLegend;
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
private static _observedAttributesIgcScaleLegendComponent;
static get observedAttributes(): string[];
static htmlTagName: string;
protected static _isElementRegistered: boolean;
static register(): void;
}