ECharts-Based Dashboard Component Configuration

Static Component Integration To add static visualization elements such as histograms, bar charts, line graphs, pie charts, or scatter plots, follow the standard procedure for extending graphical primitives. The source code already includes pre-built implementations for these common chart types. Configuring Virtual Variables For a histogram comp ...

Posted on Thu, 06 Aug 2026 16:00:39 +0000 by Daguse

Fetching SGE Gold Price Data with Python POST Requests

The exchange provides real-time market data including open/high/low/close prices and trading volumes via its official API endpoints. This structured data is crucial for market participants analyzing price trends and making investment decisions. Data Acquisition Process Identify the target API endpoint for historical price data Construct POST r ...

Posted on Mon, 03 Aug 2026 16:18:45 +0000 by zemerick

Managing ECharts Resize Events in Loops with Closures

When dynamically generating multiple ECharts instances within a loop, ensuring they adapt smoothly to viewport changes requires careful event handling. A common issue arises where charts do not resize proportionally, which can be exacerbated by incorrect percentage calculations (e.g., distributing width evenly among five elements requires 20% r ...

Posted on Mon, 27 Jul 2026 16:15:06 +0000 by Copernicus

Building a Data Visualization Dashboard with Vue 3, Spring Boot, and ECharts

Prerequisites This guide assumes you have already integrated ECharts into your project via npm. The official ECharts website offers various chart examples that you can customize as needed. The final dashboard will look like the following: Frontend Implementation Define a container in the page to display the chart. The interaction between front ...

Posted on Sun, 12 Jul 2026 16:18:38 +0000 by TimUSA

Building a China COVID-19 Map with ECharts and Live Data

This article demonstrates how to create an interactive COVID-19 map of China using Apache ECharts. Two approaches are covered: fetching live data from the Tencent API and consuming server-side data (e.g., from a Java backend). The visual map uses piecewise coloring to reflect confirmed case ranges across provinces. Approach 1: Fetching Live Dat ...

Posted on Tue, 23 Jun 2026 17:07:41 +0000 by Will Poulson

Vue Dashboard Development: ECharts Composition API Wrapper

ECharts Configuration Hook Implementation Core Configuration Functions The implementation begins with utility functions that define default chart styling: const createDefaultLegend = () => ({ bottom: 0, left: 0, orient: "vertical", itemWidth: 8, itemHeight: 8, textStyle: { color: "white", }, }); const c ...

Posted on Sat, 13 Jun 2026 18:24:09 +0000 by tommychi

Building an Epidemic Data Visualization System with ECharts and JSP

This article describes how to create a web-based epidemic data visualization system that retrieves information from a database and displays it in both tabular and graphical formats. The implementation leverages ECharts for dynamic chart rendering and JSP for the web interface. Key Implementation Challenges 1. Data Integration with ECharts Datas ...

Posted on Mon, 08 Jun 2026 18:20:26 +0000 by khjart

Creating Horizontal Bar Charts with Gradient Colors Using ECharts in Vue 2

Creating the Chart Container First, establish a container element for the chart using a template ref: <div class="chart-container" ref="chartRef"></div> Initializing the Chart Instance Retrieve the DOM element and insatntiate the ECharts instance: let chartDom = this.$refs.chartRef; this.chartInstance = echarts. ...

Posted on Sat, 23 May 2026 22:39:27 +0000 by dizzy1

Enhancing GeoJSON from Tianditu for ECharts Compatibility

Processinng Tianditu GeoJSON for ECharts Integration When using GeoJSON data downloaded from Tianditu directly with ECharts 4+, certain properties like center coordinates, administrative levels, and adcodes may be missing. A Python script can merge these missing properties from a reference JSON file. Python Processing Script import json def re ...

Posted on Wed, 13 May 2026 15:54:19 +0000 by tripc1

Vue 3 Project Setup and Core Integration Patterns

Project Initializasion and Dependencies To establish a modern Vue 3 ecosystem, begin by scaffolding the application using Vite. Subsequently, install necessary libraries categorized by their usage environment: Scaffolding: Initialize the project structure with Vue 3. Development Dependencies: Install sass for stylesheet processing. Runtime Dep ...

Posted on Mon, 11 May 2026 08:25:02 +0000 by Aimless