jarvis000000 opened a new issue, #18104:
URL: https://github.com/apache/echarts/issues/18104

   ### What problem does this feature solve?
   
   1. 通过其他模块已知的过滤参数来展示正确平行坐标系。如图:
   
![image](https://user-images.githubusercontent.com/59681983/209489105-2f383397-62b4-4720-a651-92bfc3837161.png)
   
   
   ### What does the proposed API look like?
   
   1. 初始化时:
   ``` code
   parallelAxis: [
       { dim: 0, name: '语文', selected:[60, 100] },
       { dim: 1, name: '数学', selected:[60, 100] },
       { dim: 2, name: '等级' , selected:['优秀','及格'] },
   ]
   ```
   2. 编辑修改单个坐标轴范围:
   ``` code
   const option = echart.getOption()
   option.parallelAxis[1].selected = [80, 100]
   echart.setOption(option, true)
   ```
   


-- 
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