cione-comp-lib
Version:
`$ yarn add cione-comp-lib` 或者 `$ npm i cione-comp-lib -S`
16 lines (15 loc) • 492 B
JavaScript
import { __extends } from "../../../../tslib/tslib.es6.mjs";
import Axis from "../Axis.mjs";
var IndicatorAxis = function(_super) {
__extends(IndicatorAxis2, _super);
function IndicatorAxis2(dim, scale, radiusExtent) {
var _this = _super.call(this, dim, scale, radiusExtent) || this;
_this.type = "value";
_this.angle = 0;
_this.name = "";
return _this;
}
return IndicatorAxis2;
}(Axis);
var IndicatorAxis$1 = IndicatorAxis;
export { IndicatorAxis$1 as default };