You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2021/09/24 07:59:05 UTC

[GitHub] [echarts] pissang edited a comment on issue #15763: Enable more dimensions (more than x & y) visualmap for line chart

pissang edited a comment on issue #15763:
URL: https://github.com/apache/echarts/issues/15763#issuecomment-926425988


   For example:
   ```ts
   const data = [1, 2, 3, 4, 5];
   const series0 = {
     type: 'line',
     lineStyle: {color: 'green' },
     data: data.map(item => item > 3 ? item : '-')
   };
   const series1 = {
     type: 'line',
     lineStyle: {color: 'red' },
     data: data.map(item => item <= 3 ? item : '-')
   };
   ``


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org