echarts-bot[bot] commented on issue #18104: URL: https://github.com/apache/echarts/issues/18104#issuecomment-1364806874
@jarvis000000 It seems you are not using English, I've helped translate the content automatically. To make your issue understood by more people and get helped, we'd like to suggest using English next time. 🤗 <details><summary><b>TRANSLATED</b></summary><br> **TITLE** [Feature] The selection range set for each axis of a parallel coordinate system **BODY** ### What problem does this feature solve? 1. Display the correct parallel coordinate system through the filter parameters known by other modules. As shown in the picture:  ### What does the proposed API look like? 1. During initialization: ```code parallelAxis: [ { dim: 0, name: 'Chinese', selected: [60, 100] }, { dim: 1, name: 'math', selected:[60, 100] }, { dim: 2, name: 'grade' , selected:['excellent','pass'] }, ] ``` 2. Edit and modify the range of a single coordinate axis: ```code const option = echart. getOption() option.parallelAxis[1].selected = [80, 100] echart. setOption(option, true) ``` </details> -- 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]
