PHP Classes

File: vendors/gentelella/vendors/echarts/src/chart/candlestick/preprocessor.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/echarts/src/chart/candlestick/preprocessor.js   Download  
File: vendors/gentelella/vendors/echarts/src/chart/candlestick/preprocessor.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: 458 bytes
 

Contents

Class file image Download
define(function (require) { var zrUtil = require('zrender/core/util'); return function (option) { if (!option || !zrUtil.isArray(option.series)) { return; } // Translate 'k' to 'candlestick'. zrUtil.each(option.series, function (seriesItem) { if (zrUtil.isObject(seriesItem) && seriesItem.type === 'k') { seriesItem.type = 'candlestick'; } }); }; });