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/11/30 02:39:00 UTC

[GitHub] [echarts] pissang commented on issue #16137: [Feature] Handle changing styles of elements via CSS media queries

pissang commented on issue #16137:
URL: https://github.com/apache/echarts/issues/16137#issuecomment-982225552


   Thanks for the suggestion. Currently you can change color palette manually before print.
   
   ```ts
   var mediaQueryList = window.matchMedia('print');
   mediaQueryList.addListener(function(mql) {
     if (mql.matches) {
         echartsInstance.setOption({ color: ['#000'] });
      } else {
         echartsInstance.setOption({ color: normalColorPalette });
      }
   });
   ```


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