You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2018/10/25 08:53:17 UTC

[GitHub] lightColour commented on issue #9279: 动态设置 markline, symbol 高亮效果 失效

lightColour commented on issue #9279: 动态设置 markline, symbol 高亮效果 失效
URL: https://github.com/apache/incubator-echarts/issues/9279#issuecomment-432969101
 
 
   是 setOption 造成高亮效果消失,重新设置下高亮效果就行了:
   `
   myChart.setOption(oldOption);
   setTimeout(function() {
       if (dataindex) {
           myChart.dispatchAction({
               type: 'highlight',
               dataIndex: dataindex,
           })
       }
   })
   `

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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