gioneves commented on PR #21579:
URL: https://github.com/apache/echarts/pull/21579#issuecomment-4753846369

   Thanks for working on this! I noticed 
`radar.splitLine.showMinLine`/`showMaxLine` 
   has the same issue — it's listed in the docs and even appears in the 
component's 
   default options (`showMinLine: true, showMaxLine: true`), but setting 
   `showMinLine: false` has no visible effect on rendering.
   
   Minimal repro:
   
   \`\`\`javascript
   radar: {
     indicator: [
       { name: 'Sales', max: 6500 },
       { name: 'Administration', max: 16000 },
       { name: 'IT', max: 30000 }
     ],
     splitLine: {
       showMinLine: false,
       lineStyle: { width: 2, color: 'red' }
     }
   }
   \`\`\`
   
   The minimum split line still renders regardless of the `showMinLine` value.
   
   Would it make sense to include `radar` in the scope of this PR as well, 
since it 
   has its own `splitLine` build logic (`_buildSplitLineAndArea`) separate from 
   `singleAxis`/`angleAxis`/`radiusAxis`? Happy to help test if useful.


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