Home Backend Development PHP Tutorial How to use ECharts and php interface to generate statistical charts with labels and legends

How to use ECharts and php interface to generate statistical charts with labels and legends

Dec 18, 2023 pm 04:09 PM
php echarts summary graph

How to use ECharts and php interface to generate statistical charts with labels and legends

How to use ECharts and php interface to generate statistical charts with labels and legends

With the development of Internet technology, data visualization has become more and more important A task. As an intuitive and easy-to-understand display method, statistical charts are widely used in data analysis and decision support. As an excellent open source chart library, ECharts provides a wealth of data visualization chart types and powerful functions, and has become the first choice of many developers and data analysts.

This article will introduce how to use ECharts and php interface to generate statistical charts with labels and legends. We will demonstrate the implementation process through a specific code example.

First of all, we need to introduce ECharts related resource files into the project. You can get the latest version from the official website or GitHub. Unzip the resource files into your project directory and introduce the relevant js and css files into the HTML file.

Next, we need to prepare the data needed to generate the chart. In php, we can obtain data through database queries, API calls, etc., and convert it into JSON format. In this example, we assume that the following data has been obtained:

$data = [
    ['name' => '图例1', 'value' => 100],
    ['name' => '图例2', 'value' => 200],
    ['name' => '图例3', 'value' => 300],
    // ...
];
Copy after login

Then, we can dynamically generate an HTML element containing the ECharts chart container through php, as shown below:

<div id="chart" style="width: 600px; height: 400px;"></div>
Copy after login

Next , we need to write JavaScript code to initialize ECharts and draw the chart:

// 引入ECharts库
import echarts from 'echarts';

// 获取容器元素
var chartContainer = document.getElementById('chart');

// 初始化ECharts实例
var chart = echarts.init(chartContainer);

// 设置图表的配置项和数据
var option = {
    title: {
        text: '统计图表',
        subtext: '数据来源: PHP接口',
    },
    tooltip: {
        trigger: 'item',
        formatter: '{a} <br/>{b} : {c} ({d}%)',
    },
    legend: {
        orient: 'vertical',
        left: 'left',
        data: <?=json_encode(array_column($data, 'name'))?>,
    },
    series: [
        {
            name: '标签名称',
            type: 'pie',
            radius: '55%',
            center: ['50%', '60%'],
            data: <?=json_encode($data)?>,
            label: {
                normal: {
                    show: true,
                    formatter: '{b} : {c} ({d}%)',
                },
            },
            emphasis: {
                label: {
                    show: true,
                    fontSize: '20',
                    fontWeight: 'bold',
                },
            },
        },
    ],
};

// 使用刚指定的配置项和数据显示图表
chart.setOption(option);
Copy after login

In the above code, we first introduced the ECharts library and obtained the chart container element. Then, we used the init() method of ECharts to create an ECharts instance and set the chart configuration items and data. Among them, title represents the title and subtitle of the chart, tooltip represents the prompt information when the mouse is hovering, legend represents the legend, and series represents the chart. series of data, here we take a pie chart as an example.

Finally, we use the setOption() method to apply the configuration items and data to the chart to draw the chart.

Through the above steps, we successfully used ECharts and php interfaces to generate statistical charts with labels and legends. You can adjust configuration items and data according to actual needs, and design richer chart effects.

To sum up, the steps to use ECharts and php interface to generate statistical charts with labels and legends are as follows:

  1. Introduce relevant resource files of ECharts;
  2. Preparation Generate the data required for the chart and convert it into JSON format;
  3. Create an element containing the ECharts chart container in the HTML file;
  4. Write JavaScript code, initialize ECharts and set the chart Configuration items and data;
  5. Use the setOption() method to apply the configuration items and data to the chart and draw the chart.

I hope the above content can help you. For more detailed functions and usage of ECharts and php interfaces, you can consult official documents or other related resources for in-depth study. I wish you go further and further on the road of data visualization!

The above is the detailed content of How to use ECharts and php interface to generate statistical charts with labels and legends. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles