| 123456789101112131415161718192021222324252627282930313233 |
- var zrUtil = require("zrender/lib/core/util");
- var Axis = require("../Axis");
- function IndicatorAxis(dim, scale, radiusExtent) {
- Axis.call(this, dim, scale, radiusExtent);
- /**
- * Axis type
- * - 'category'
- * - 'value'
- * - 'time'
- * - 'log'
- * @type {string}
- */
- this.type = 'value';
- this.angle = 0;
- /**
- * Indicator name
- * @type {string}
- */
- this.name = '';
- /**
- * @type {module:echarts/model/Model}
- */
- this.model;
- }
- zrUtil.inherits(IndicatorAxis, Axis);
- var _default = IndicatorAxis;
- module.exports = _default;
|