UNPKG

igniteui-react-charts

Version:

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

28 lines (27 loc) 913 B
import { __extends } from "tslib"; 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. */ var IgrScaleLegend = /** @class */ /*@__PURE__*/ (function (_super) { __extends(IgrScaleLegend, _super); function IgrScaleLegend(props) { return _super.call(this, props) || this; } IgrScaleLegend.prototype.createImplementation = function () { return new ScaleLegend(); }; Object.defineProperty(IgrScaleLegend.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); return IgrScaleLegend; }(IgrLegendBase)); export { IgrScaleLegend };