Ovilia commented on code in PR #20677:
URL: https://github.com/apache/echarts/pull/20677#discussion_r1986550971
##########
src/util/types.ts:
##########
@@ -137,6 +137,11 @@ export interface ECElement extends Element {
* Force disable morphing
*/
disableMorphing?: boolean
+
+ /**
+ * From RadarSymbol
+ */
+ __dimIdx?: number;
Review Comment:
`__dimIdx` is only for radar series, so it should not be included here.
##########
src/model/mixin/dataFormat.ts:
##########
@@ -88,6 +90,7 @@ export class DataFormatMixin {
color: color,
borderColor: borderColor,
dimensionNames: userOutput ? userOutput.fullDimensions : null,
+ dimensionIndex: el ? el.__dimIdx : null,
Review Comment:
`dimensionIndex` is only for radar series, so it should not be included here.
--
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]