vikramkalta commented on issue #8160: Highlighting the clicked month
URL: 
https://github.com/apache/incubator-echarts/issues/8160#issuecomment-393652618
 
 
   set emphasize to false in the options or refer the docs, and set emphasize 
for each click. or you can dispatch an action on a click and that would do the 
same!!
   dispatchAction({
       type: 'highlight',
       // optional; series index; could be an array of multiple series
       seriesIndex?: number|Array,
       // optional; series name; could be an array of multiple series
       seriesName?: string|Array,
       // options are index of data
       dataIndex?: number,
       // options are data name
       name?: string
   })
   
   refer the api section in echarts website

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to