我需要使用TOP 10客户制作年度销售额的图表。
在我的表格中我有:
<template is="dom-repeat" itmes="{{_blogPosts}}">
<div class="card">
<div class="imgheader"></div>
<div class="container">
<div id="title">[[item.title]]</div>
<div id="summary">[[item.summary]]</div>
<div id="image">
<img src="[[item.image]]">
</div>
</div>
</div>
</template>
在我的表中,我有超过200个客户名称和5年(2012年2017年),我还需要那些保持在TOP 10之上,留在名为&#34;其他&#34;。
我在这里看过一些教程,但我没有得到结果。后者是应用Desenrank公式,但不是每年破损。
Axis -x: Year
Axis-y: Total Sales
Color: Name_Client
有没有人有这种经历?