Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复漏斗图tooltip没有百分比的问题 #4332

Merged
merged 1 commit into from
Feb 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/chart/funnel/FunnelSeries.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,19 @@ define(function(require) {
labelLineEmphasisOpt.show = labelLineEmphasisOpt.show
&& option.label.emphasis.show;
},

// Overwrite
getDataParams: function (dataIndex) {
var data = this._data;
var params = FunnelSeries.superCall(this, 'getDataParams', dataIndex);
var sum = data.getSum('value');
// Percent is 0 if sum is 0
params.percent = !sum ? 0 : +(data.get('value', dataIndex) / sum * 100).toFixed(2);

params.$vars.push('percent');
return params;
},

defaultOption: {
zlevel: 0, // 一级层叠
z: 2, // 二级层叠
Expand Down Expand Up @@ -98,4 +110,4 @@ define(function(require) {
});

return FunnelSeries;
});
});