PHP Classes

File: vendors/echarts/src/chart/funnel/FunnelSeries.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/echarts/src/chart/funnel/FunnelSeries.js   Download  
File: vendors/echarts/src/chart/funnel/FunnelSeries.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: 3,350 bytes
 

Contents

Class file image Download
define(function(require) { 'use strict'; var List = require('../../data/List'); var modelUtil = require('../../util/model'); var completeDimensions = require('../../data/helper/completeDimensions'); var FunnelSeries = require('../../echarts').extendSeriesModel({ type: 'series.funnel', init: function (option) { FunnelSeries.superApply(this, 'init', arguments); // Enable legend selection for each data item // Use a function instead of direct access because data reference may changed this.legendDataProvider = function () { return this._dataBeforeProcessed; }; // Extend labelLine emphasis this._defaultLabelLine(option); }, getInitialData: function (option, ecModel) { var dimensions = completeDimensions(['value'], option.data); var list = new List(dimensions, this); list.initData(option.data); return list; }, _defaultLabelLine: function (option) { // Extend labelLine emphasis modelUtil.defaultEmphasis(option.labelLine, ['show']); var labelLineNormalOpt = option.labelLine.normal; var labelLineEmphasisOpt = option.labelLine.emphasis; // Not show label line if `label.normal.show = false` labelLineNormalOpt.show = labelLineNormalOpt.show && option.label.normal.show; labelLineEmphasisOpt.show = labelLineEmphasisOpt.show && option.label.emphasis.show; }, defaultOption: { zlevel: 0, // ???? z: 2, // ???? legendHoverLink: true, left: 80, top: 60, right: 80, bottom: 60, // width: {totalWidth} - left - right, // height: {totalHeight} - top - bottom, // ?????????? // min: 0, // max: 100, minSize: '0%', maxSize: '100%', sort: 'descending', // 'ascending', 'descending' gap: 0, funnelAlign: 'center', label: { normal: { show: true, position: 'outer' // formatter: ?????????Tooltip.formatter???????? // textStyle: null // ?????????????TEXTSTYLE }, emphasis: { show: true } }, labelLine: { normal: { show: true, length: 20, lineStyle: { // color: ??, width: 1, type: 'solid' } }, emphasis: {} }, itemStyle: { normal: { // color: ??, borderColor: '#fff', borderWidth: 1 }, emphasis: { // color: ??, } } } }); return FunnelSeries; });