PHP Classes

File: vendors/echarts/src/model/mixin/makeStyleMapper.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/echarts/src/model/mixin/makeStyleMapper.js   Download  
File: vendors/echarts/src/model/mixin/makeStyleMapper.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: 873 bytes
 

Contents

Class file image Download
// TODO Parse shadow style // TODO Only shallow path support define(function (require) { var zrUtil = require('zrender/core/util'); return function (properties) { // Normalize for (var i = 0; i < properties.length; i++) { if (!properties[i][1]) { properties[i][1] = properties[i][0]; } } return function (excludes) { var style = {}; for (var i = 0; i < properties.length; i++) { var propName = properties[i][1]; if (excludes && zrUtil.indexOf(excludes, propName) >= 0) { continue; } var val = this.getShallow(propName); if (val != null) { style[properties[i][0]] = val; } } return style; }; }; });