gowthamzinc commented on code in PR #20938:
URL: https://github.com/apache/echarts/pull/20938#discussion_r2152946747


##########
src/chart/radar/RadarSeries.ts:
##########
@@ -102,6 +107,17 @@ class RadarSeriesModel extends 
SeriesModel<RadarSeriesOption> {
         });
     }
 
+    /**
+     * @overwrite
+     */
+    getDataParams(dataIndex: number, dataType: any, el?: Element): 
RadarCallbackDataParams {
+        const params = super.getDataParams(dataIndex) as 
RadarCallbackDataParams;
+        // indicatorIndex && indicatorAxes
+        params.indicatorIndex = (el && (el as any).__dimIdx) ?? null;

Review Comment:
   Avoided using ?? 
   
   [Instead of indicatorAxes just pass name of that 
axis](https://github.com/apache/echarts/pull/20938/commits/0d4759484050247a60c7a5cd5bee9a3f2c2df6f1)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to