From 19f0b87f3e2314b48c3b84824f1ea794a8b6e714 Mon Sep 17 00:00:00 2001
From: wisonic <shaochuan.wu@fit2cloud.com>
Date: Mon, 29 Jul 2024 16:14:58 +0800
Subject: [PATCH] =?UTF-8?q?fix(=E5=9B=BE=E8=A1=A8):=20=E8=A1=A8=E6=A0=BC?=
 =?UTF-8?q?=E5=BA=8F=E5=8F=B7=E5=88=97=E6=8F=90=E7=A4=BA=E4=B8=BA=E7=A9=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../src/views/chart/components/js/panel/types/impl/s2.ts        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/core-frontend/src/views/chart/components/js/panel/types/impl/s2.ts b/core/core-frontend/src/views/chart/components/js/panel/types/impl/s2.ts
index 05cedb33a6..00fc52bc77 100644
--- a/core/core-frontend/src/views/chart/components/js/panel/types/impl/s2.ts
+++ b/core/core-frontend/src/views/chart/components/js/panel/types/impl/s2.ts
@@ -70,7 +70,7 @@ export abstract class S2ChartView<P extends SpreadSheet> extends AntVAbstractCha
     switch (cell.cellType) {
       case 'dataCell':
         if (meta.valueField === SERIES_NUMBER_FIELD) {
-          content = meta.fieldValue
+          content = meta.fieldValue.toString()
           break
         }
         field = find(metaConfig, item => item.field === meta.valueField)