With the widespread application of data visualization, ECharts, an excellent visualization library, has also received more and more attention. Among them, pie charts are widely used to display the proportion of data. This article will introduce how to use ECharts pie charts to display data proportions and provide specific code examples.
1. Basic concepts of ECharts pie charts
First of all, we need to understand the basic concepts of pie charts. Pie charts are often used to represent the proportion of data. Specific values are converted into angle sizes, and then represented by the size of the sector area. The size of each sector is proportional to their numerical value.
2. How to implement ECharts pie chart
To use ECharts to draw a pie chart, you need to first introduce the ECharts library and create a div tag with a specified size to display the pie chart. The specific code is as follows:
<style type="text/css"> #myChart { width: 400px; height: 400px; } </style> <div id="myChart"></div> <script src="echarts.min.js"></script>
Among them, the style tag is used to specify the size of the div tag where the pie chart is located. The script tag introduces the min version of the ECharts library.
Then, we need to implement the pie chart through JavaScript code. The specific code is as follows:
var myChart = echarts.init(document.getElementById('myChart')); var option = { title: { text: '饼图示例', left: 'center' }, tooltip: {}, legend: { data:['数据1', '数据2', '数据3'] }, series: [ { name:'数据占比', type:'pie', radius: '55%', center: ['50%', '60%'], data:[ {value:335, name:'数据1'}, {value:310, name:'数据2'}, {value:234, name:'数据3'} ], itemStyle: { emphasis: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } } ] }; myChart.setOption(option);
In the above code, we first use the echarts.init() method to initialize the ECharts instance. Then, we define a JavaScript object option, which defines various properties and data needed in the pie chart. Finally, we use the setOption() method to apply this option object to the ECharts instance to generate a pie chart.
Specifically, the option object contains the following attributes:
- title: used to set the title of the pie chart;
- tooltip: used to set the mouse Prompt information when floating;
- legend: used to set the label of each sector area in the pie chart;
- series: used to set the specific data series in the pie chart, including radius, data , style, etc.
3. Style setting of ECharts pie chart
In addition to basic data display, ECharts pie chart also provides a variety of style setting options, which can be achieved by modifying the corresponding properties. Pie charts in different styles.
- Inner and outer radius
Adjust the inner and outer radius of the pie chart by setting the radius attribute to control the size of the sector area. The following code:
series: [ { type: 'pie', radius: ['50%', '70%'], data: [ {value: 335, name: '数据1'}, {value: 310, name: '数据2'}, {value: 234, name: '数据3'}, {value: 135, name: '数据4'}, {value: 1548, name: '数据5'} ] } ]
In the above code, the radius attribute contains an array, and the two values in the array represent the percentage of the inner and outer radius respectively. In this example, the inner radius is 50% and the outer radius is 70%.
- Legend position
Adjust the position and direction of the legend by setting the x, y, and orient attributes in the legend attribute. The following code:
legend: { x: 'left', y: 'center', orient: 'vertical', data: ['数据1', '数据2', '数据3', '数据4', '数据5'] }
In the above code, the x attribute sets the horizontal position of the legend to the left, the y attribute sets the vertical position of the legend to the center, and the orient attribute sets the direction of the legend to the vertical direction.
- Shadow effect
By setting the emphasis attribute in the itemStyle attribute, you can add shadow and other effects to the fan-shaped area to enhance the visual effect of the pie chart. The following code:
itemStyle: { emphasis: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } }
In the above code, shadowBlur represents the blur degree of the shadow, shadowOffsetX and shadowOffsetY represent the horizontal and vertical offset of the shadow, and shadowColor represents the color of the shadow.
4. ECharts Pie Chart Example
Below, we give a specific ECharts pie chart example, which contains the basic data and style settings mentioned above. The code is as follows:
<style type="text/css"> #myChart { width: 400px; height: 400px; } </style> <div id="myChart"></div> <script src="echarts.min.js"></script> <script> var myChart = echarts.init(document.getElementById('myChart')); var option = { title: { text: '饼图示例', left: 'center' }, tooltip: { trigger: 'item', formatter: '{a} <br/>{b}: {c} ({d}%)' }, legend: { orient: 'vertical', left: 10, top: 20, data:['数据1', '数据2', '数据3', '数据4', '数据5'] }, series: [ { name: '访问来源', type: 'pie', radius: ['40%', '60%'], avoidLabelOverlap: false, label: { show: false, position: 'center' }, emphasis: { label: { show: true, fontSize: '30', fontWeight: 'bold' } }, labelLine: { show: false }, data:[ {value:335, name:'数据1'}, {value:310, name:'数据2'}, {value:234, name:'数据3'}, {value:135, name:'数据4'}, {value:1548, name:'数据5'} ] } ] }; myChart.setOption(option); </script>
This pie chart includes the following features:
- Added a legend and adjusted the legend position to the upper left corner;
- Added mouse hover The prompt pop-up window shows the percentage;
- adds a shadow effect and sets a highlight effect when the mouse is hovering.
The above is an introduction to the basic implementation of ECharts pie charts and some style setting examples. I hope readers can have a certain understanding of ECharts pie charts through this article and be able to apply them correctly in actual development.
The above is the detailed content of ECharts pie chart: how to display data proportions. For more information, please follow other related articles on the PHP Chinese website!

ECharts是一款功能强大、灵活可定制的开源图表库,可用于数据可视化和大屏展示。在大数据时代,统计图表的数据导出和分享功能变得越来越重要。本文将介绍如何通过Java接口实现ECharts的统计图表数据导出和分享功能,并提供具体的代码示例。一、ECharts简介ECharts是百度开源的一款基于JavaScript和Canvas的数据可视化库,具有丰富的图表

随着大数据时代的来临,数据可视化成为企业决策的重要工具。千奇百怪的数据可视化工具层出不穷,其中ECharts以其强大的功能和良好的用户体验受到了广泛的关注和应用。而PHP作为一种主流的服务器端语言,也提供了丰富的数据处理和图表展示功能。本文将介绍如何使用PHP和ECharts创建可视化图表和报表。ECharts简介ECharts是一个开源的可视化图表库,它由

ECharts入门指南:如何使用ECharts,需要具体代码示例ECharts是一款基于JavaScript的数据可视化库,通过使用ECharts,用户可以轻松地展示各种各样的图表,如折线图、柱状图、饼图等等。本文将为您介绍如何使用ECharts,并提供详细的代码示例。安装ECharts要使用ECharts,您首先需要安装它。您可以从ECharts官网htt

Vue统计图表的饼图和雷达图功能实现引言:随着互联网的发展,数据分析和图表显示的需求也越来越迫切。Vue作为一种流行的JavaScript框架,提供了丰富的数据可视化插件和组件,方便开发人员快速实现各种统计图表。本文将介绍如何使用Vue实现饼图和雷达图的功能,并提供相关的代码示例。引入统计图表插件在Vue开发中,我们可以使用一些优秀的统计图表插件来帮助我们实

一、前言前端开发需要经常使用ECharts图表渲染数据信息,在一个项目中我们经常需要使用多个图表,选择封装ECharts组件复用的方式可以减少代码量,增加开发效率。二、封装ECharts组件为什么要封装组件避免重复的工作量,提升复用性使代码逻辑更加清晰,方便项目的后期维护封装组件可以让使用者不去关心组件的内部实现以及原理,能够使一个团队更好的有层次的去运行封装的ECharts组件实现了以下的功能:使用组件传递ECharts中的option属性手动/自动设置chart尺寸chart自适应宽高动态展

如果您从一开始就关注本系列,您可能已经注意到Plotly.js使用相同的scatter类型来创建折线图和气泡图。唯一的区别是,我们在创建折线图时必须将mode设置为lines,而在创建气泡图时必须将markers设置为mode。同样,Plotly.js允许您通过对type属性使用相同的值并根据您要创建的图表更改其他属性的值来创建饼图、圆环图和仪表图。在Plotly.js中创建饼图您可以通过将type属性设置为pie来在Plotly.js中创建饼图。还有其他属性,例如opacity、visible

如何使用ECharts和Python接口创建饼图ECharts是一个开源的数据可视化库,它提供了丰富的图表类型和灵活的配置选项,使得开发者可以轻松地创建各种图表,包括饼图。而Python则提供了强大的数据处理和可视化的工具,结合ECharts的Python接口,我们可以使用Python语言来生成饼图,并在Web页面中展示出来。接下来,我将介绍如何使用ECha

Microsoft Excel有许多至今令人们惊叹的功能。人们每天都会学到一些新东西。今天,我们将了解如何在Excel图表中添加和自定义数据标签。Excel图表包含大量数据,一眼看懂图表可能具有挑战性。使用数据标签是指出重要信息的好方法。数据标签可以用作柱形图或条形图的一部分。当您创建饼图时,它甚至可以用作标注。添加数据标签为了展示如何添加数据标签,我们将以饼图为例。虽然大多数人使用图例来显示饼图中的内容,但数据标签的效率要高得多。要添加数据标签,请创建饼图。打开它,然后单击显示图表设计


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
