morrisjs / morris.js

Pretty time-series line graphs

Home Page:http://morrisjs.github.com/morris.js/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Set currently selected (hovered) pointSize

Demitrius opened this issue · comments

Does it possible set hovered point size?

Unfortunately the size of the hovered point (actually the difference of standard point and hovered point) is hard coded. If you want to modify it, just change the default value (3px) to the size you want in morris.js on line 1276:

r: this.pointSizeForSeries(index) + 3

Thanks, its help me.