UNPKG

igniteui-react-charts

Version:

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

20 lines (19 loc) 518 B
import { IgrLegendBase } 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 class IgrScaleLegend extends IgrLegendBase { createImplementation() { return new ScaleLegend(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } }