echarts实现漏斗图图表效果代码

代码语言:html

所属分类:图表

代码描述:echarts实现漏斗图图表效果代码

代码标签: echarts 漏斗图 图表

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
<style>
body {
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px; 
	color: #000;
}

a:link, a:visited {
	color: #4682b4;
}

a:hover {
	color: #4169e1;
}

#main	{
	width: 1000px;
	height: 800px;
}
</style>



</head>

<body >
  <!-- Must specify width and height of DOM, ref CSS -->
<div id="main"></div>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/echarts.5.1.1.js"></script>
      <script >
// based ready dom, initialize echarts instance 
var myChart = echarts.init(document.getElementById('main'));

// Specify configurations and data graphs 
var option = {
  title: {
    text: 'Funnel Plot',
    subtext: 'Fictitious' },

  tooltip: {
    trigger: 'item',
    formatter: "{a} <br/>{b} : {c}%" },

  toolbox: {
    show: true,
    feature: {
      mark: { show: true },
      dataView: { show: true, readOnly: false },
      restore: { show: true },
      saveAsImage: { show: true } } },


  legend: {
    data: ['Show', 'Click&.........完整代码请登录后点击上方下载按钮下载查看

网友评论0