PHP Classes

File: vendors/echarts/src/coord/polar/AngleAxis.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/echarts/src/coord/polar/AngleAxis.js   Download  
File: vendors/echarts/src/coord/polar/AngleAxis.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: 708 bytes
 

Contents

Class file image Download
define(function(require) { 'use strict'; var zrUtil = require('zrender/core/util'); var Axis = require('../Axis'); function AngleAxis(scale, angleExtent) { angleExtent = angleExtent || [0, 360]; Axis.call(this, 'angle', scale, angleExtent); /** * Axis type * - 'category' * - 'value' * - 'time' * - 'log' * @type {string} */ this.type = 'category'; } AngleAxis.prototype = { constructor: AngleAxis, dataToAngle: Axis.prototype.dataToCoord, angleToData: Axis.prototype.coordToData }; zrUtil.inherits(AngleAxis, Axis); return AngleAxis; });