Justin-ZS commented on code in PR #20620:
URL: https://github.com/apache/echarts/pull/20620#discussion_r2972451198
##########
src/model/Series.ts:
##########
@@ -516,6 +516,11 @@ class SeriesModel<Opt extends SeriesOption = SeriesOption>
extends ComponentMode
// PENGING If selectedMode is null ?
select(innerDataIndices: number[], dataType?: SeriesDataType): void {
+ // discard the marker series select event at now.
+ // TODO support marker(markerArea, markLine, etc) series select event.
+ if (dataType === 'marker') {
+ return;
+ };
Review Comment:
no-extra-semi ?
--
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]