PHP Classes

File: vendors/gentelella/vendors/echarts/src/chart/heatmap/HeatmapSeries.js

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

Contents

Class file image Download
define(function (require) { var SeriesModel = require('../../model/Series'); var createListFromArray = require('../helper/createListFromArray'); return SeriesModel.extend({ type: 'series.heatmap', getInitialData: function (option, ecModel) { return createListFromArray(option.data, this, ecModel); }, defaultOption: { // Cartesian2D or geo coordinateSystem: 'cartesian2d', zlevel: 0, z: 2, // Cartesian coordinate system xAxisIndex: 0, yAxisIndex: 0, // Geo coordinate system geoIndex: 0, blurSize: 30, pointSize: 20, maxOpacity: 1, minOpacity: 0 } }); });