PHP Classes

File: vendors/gentelella/vendors/echarts/src/coord/radar/IndicatorAxis.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/echarts/src/coord/radar/IndicatorAxis.js   Download  
File: vendors/gentelella/vendors/echarts/src/coord/radar/IndicatorAxis.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 702 bytes
 

Contents

Class file image Download
define(function (require) { var zrUtil = require('zrender/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); return IndicatorAxis; });