RomanOlegovich edited a comment on issue #12635:
URL:
https://github.com/apache/incubator-echarts/issues/12635#issuecomment-629017997
I use dynamic data filtering. Therefore, I introduced another dimension to
know the source index of the category, and not in the filtered data.
Data:
data: [[0,1], [1,1], [2,1], [3,1], [4,1], [5,1]]
Filtered via zoom:
data: [[0,1], [2,1], [4,1]].
I can’t use "dimension: 0" because if select {min:1, max:2}, then the wrong
categories will be highlighted in the filtered data:
expected highlighted data: [[0,1], **[1,1], [2,1],** [3,1], [4,1], [5,1]]
actually highlighted data: [[0,1], **[2,1], [4,1]**].
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]