Home > Article > Web Front-end > Implementation of pie chart and radar chart functions in Vue statistical charts
Implementation of pie charts and radar charts in Vue statistical charts
Introduction:
With the development of the Internet, the demand for data analysis and chart display is also increasing The more urgent it is. As a popular JavaScript framework, Vue provides a wealth of data visualization plug-ins and components to facilitate developers to quickly implement various statistical charts. This article will introduce how to use Vue to implement the functions of pie charts and radar charts, and provide relevant code examples.
First, introduce the ECharts plug-in into the project. It can be introduced through npm or CDN. The following is a sample code introduced through CDN:
<!-- 引入ECharts插件 --> <script src="https://cdn.staticfile.org/echarts/4.8.0/echarts.min.js"></script>
<template> <div id="pieChart" style="width: 400px; height: 400px;"></div> </template> <script> import echarts from 'echarts'; export default { mounted() { // 初始化饼图实例 const pieChart = echarts.init(document.getElementById('pieChart')); // 饼图数据 const data = [ { name: '数据1', value: 50 }, { name: '数据2', value: 30 }, { name: '数据3', value: 20 }, ]; // 饼图配置项 const options = { title: { text: '饼图示例', x: 'center', }, tooltip: { trigger: 'item', formatter: '{b} : {c} ({d}%)', }, series: [ { name: '饼图数据', type: 'pie', radius: '55%', center: ['50%', '60%'], data: data, emphasis: { itemStyle: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)', }, }, }, ], }; // 渲染饼图 pieChart.setOption(options); }, }; </script>
In the above code, first we create a pie chart instance in the mounted
method and specify the container The ID is pieChart
. Then, by defining data and configuration items, we can set the pie chart style, data and prompt information, etc. Finally, use the setOption
method to apply the configuration item to the pie chart instance to achieve the rendering effect of the chart.
<template> <div id="radarChart" style="width: 400px; height: 400px;"></div> </template> <script> import echarts from 'echarts'; export default { mounted() { // 初始化雷达图实例 const radarChart = echarts.init(document.getElementById('radarChart')); // 雷达图数据 const data = [ { value: [90, 80, 70, 60, 50], name: '数据1' }, { value: [80, 70, 60, 50, 40], name: '数据2' }, { value: [70, 60, 50, 40, 30], name: '数据3' }, ]; // 雷达图配置项 const options = { title: { text: '雷达图示例', x: 'center', }, tooltip: {}, radar: { indicator: [ { name: '维度1', max: 100 }, { name: '维度2', max: 100 }, { name: '维度3', max: 100 }, { name: '维度4', max: 100 }, { name: '维度5', max: 100 }, ], }, series: [ { name: '雷达图数据', type: 'radar', data: data, }, ], }; // 渲染雷达图 radarChart.setOption(options); }, }; </script>
In the above code, we first create a radar chart instance in the mounted
method and specify the container The ID is radarChart
. Then, by defining data and configuration items, we can set the style, data and prompt information of the radar chart. Finally, use the setOption
method to apply the configuration item to the radar chart instance to achieve the rendering effect of the chart.
Summary:
This article introduces how to use Vue and ECharts plug-ins to implement the functions of pie charts and radar charts. Through the above code examples, we can clearly understand how to use Vue's life cycle hook function mounted
to initialize statistical charts, and achieve the chart rendering effect by setting data and configuration items. I hope this article can provide you with some help in the development of Vue statistical charts.
The above is the detailed content of Implementation of pie chart and radar chart functions in Vue statistical charts. For more information, please follow other related articles on the PHP Chinese website!