| 123456789101112131415161718192021222324 |
- import { __extends } from "tslib";
- import { Plot } from '../../core/plot';
- import { adaptor } from './adaptor';
- /**
- * 这个是一个图表开发的 模板代码!
- */
- var Template = /** @class */ (function (_super) {
- __extends(Template, _super);
- function Template() {
- var _this = _super !== null && _super.apply(this, arguments) || this;
- /** 图表类型 */
- _this.type = 'template';
- return _this;
- }
- /**
- * 获取适配器
- */
- Template.prototype.getSchemaAdaptor = function () {
- return adaptor;
- };
- return Template;
- }(Plot));
- export { Template };
- //# sourceMappingURL=index.js.map
|