常用,待续…
原理:其实就是timeline,获取某几段(时间)的数据,然后隐藏timeline
formatter: (item, index) =>{
let icon = item.length > 5 ? item.substring(0, 5) + '…' : item;
}
利用rich
// 所有数据最大值
let itemData = [784, 6854, 58, 365];
let maxValue = Math.max.apply(null, itemData);
chartData.sort((a, b) => {
return a.value - b.value
})
给pie加复杂背景图,并且浏览器resize不会变形
最简单最粗暴的方法,是给父div加背景图
.circle1 {
background: url("~assets/images/pieBg2.png") 0 0 / 100% 100% no-repeat;
background-size: contain;
background-position: center;
}
这篇文章,css处理方法也非常赞
http://zihua.li/2013/12/keep-height-relevant-to-width-using-css/
手机扫一扫
移动阅读更方便
你可能感兴趣的文章