UNPKG

@antv/g2plot

Version:

G2 Plot, a market of plots built with the Grammar of Graphics'

19 lines 703 B
import { __extends } from "tslib"; import * as _ from '@antv/util'; import BasePlot from '../../base/plot'; import TinyLineLayer from './layer'; var TinyLine = /** @class */ (function (_super) { __extends(TinyLine, _super); function TinyLine() { return _super !== null && _super.apply(this, arguments) || this; } TinyLine.prototype.createLayers = function (props) { var layerProps = _.deepMix({}, props); layerProps.type = 'tinyLine'; _super.prototype.createLayers.call(this, layerProps); }; TinyLine.getDefaultOptions = TinyLineLayer.getDefaultOptions; return TinyLine; }(BasePlot)); export default TinyLine; //# sourceMappingURL=index.js.map