This is an automated email from the ASF dual-hosted git repository.

plainheart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/echarts-handbook.git


The following commit(s) were added to refs/heads/master by this push:
     new 97938c9  remove trailing commas
97938c9 is described below

commit 97938c9f404af2918d5c6d494ed9644e633b4fe4
Author: Zhongxiang Wang <[email protected]>
AuthorDate: Wed May 13 23:19:42 2026 +0800

    remove trailing commas
---
 contents/en/get-started.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/contents/en/get-started.md b/contents/en/get-started.md
index d8394c8..4d1be45 100644
--- a/contents/en/get-started.md
+++ b/contents/en/get-started.md
@@ -57,23 +57,23 @@ Next, initialize an ECharts instance using 
[echarts.init](${mainSitePath}api.htm
       // Specify the configuration items and data for the chart
       var option = {
         title: {
-          text: 'ECharts Getting Started Example',
+          text: 'ECharts Getting Started Example'
         },
         tooltip: {},
         legend: {
-          data: ['sales'],
+          data: ['sales']
         },
         xAxis: {
-          data: ['Shirts', 'Cardigans', 'Chiffons', 'Pants', 'Heels', 'Socks'],
+          data: ['Shirts', 'Cardigans', 'Chiffons', 'Pants', 'Heels', 'Socks']
         },
         yAxis: {},
         series: [
           {
             name: 'sales',
             type: 'bar',
-            data: [5, 20, 36, 10, 10, 20],
-          },
-        ],
+            data: [5, 20, 36, 10, 10, 20]
+          }
+        ]
       };
 
       // Display the chart using the configuration and the data defined above.


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to