UNPKG

igniteui-react-charts

Version:

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

16 lines (15 loc) 598 B
import { IgrLegendBase, IIgrLegendBaseProps } from "./igr-legend-base"; import { ScaleLegend } from "./ScaleLegend"; /** * Represents a legend that indicates the size and the color scale for a collection of series. */ export declare class IgrScaleLegend extends IgrLegendBase<IIgrScaleLegendProps> { protected createImplementation(): ScaleLegend; /** * @hidden */ get i(): ScaleLegend; constructor(props: IIgrScaleLegendProps); } export interface IIgrScaleLegendProps extends IIgrLegendBaseProps { }