{
    分享网正式开通,我们为大家提供免费资源,欢迎大家踊跃投稿!

echarts环状图表数据统计插件

这是一款很不错的基于jQuery与echarts环状图表数据统计插件,百分比统计图表代码,环状图表环状的金额数据统计图表代码。


js代码

<script src="jquery-1.11.2.min.js"></script>
<script src="echarts-3.6.js"></script> 
<script type="text/javascript">
	$(function ()
	{
		$(".legendShow").css({"top":$(window).height()/5-100,"left":50});
		$("#div_pie").height($(window).height());
		$("#div_pie").width($(window).width());
		var chart = echarts.init(document.getElementById('div_pie'), null, {
			renderer: 'canvas'
		}); 
		chart.setOption({
			angleAxis: {
				axisLabel:
					{
						
						   formatter: function (value, index) { return value * 33500 / 100; }
					}
			},
			radiusAxis: {
				type: 'category',
				data: ["2.07%", "15.53%", ""],
				z: 10
			},
			textStyle: {
				color: "#104490",
				fontSize: 16,
				fontStyle: 900
			},
			polar: {
			},
			series: [
				{
					type: 'bar',
					itemStyle: {
						normal: {
							color: '#1d94bc'
						}
					},
					data:
						[
						{
							value: 100 * 736 / 35500
						},
						{
							value: 100 * 5513 / 35500,
							show: false,
							itemStyle: {
								normal: {
									color: 'rgb(134, 151, 34)'
								}

							},
						},
						{
							value: 100,
							show: false,
							itemStyle: {
								normal: {
									color: '#FFAA25'
								}
							}
						}
						],
					coordinateSystem: 'polar',
					name: '总计划',
					stack: 'a'

				}],
			legend: {
				legend: {
					show: true,
					data: ["总计划"],
				}
			}
		});

	});
	 
</script>


在线预览
资源均来自第三方,谨慎下载,前往第三方网站下载


米微资源分享网 , 版权所有丨本站资源仅限于学习研究,严禁从事商业或者非法活动!丨本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:echarts环状图表数据统计插件
喜欢 ()分享 (0)