new Highcharts.Options().setGlobal(new Global().setUseUTC(false)).setLang(new Lang().setResetZoom("").setOption("/resetZoomButton/theme/display",
"none").setResetZoomTitle("")));
does not seem to hide the reset zoom button altogether - there is a small empty circle which can be clicked to reset the chart... how can we hide the button.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Not sure on if there's an official way to hide the reset zoom button within Highcharts, but one quick hack may be to just position the button off screen. E.g. set the "chart/resetZoomButton/position/y" option to something like '-3000'.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
new Highcharts.Options().setGlobal(new Global().setUseUTC(false)).setLang(new Lang().setResetZoom("").setOption("/resetZoomButton/theme/display",
"none").setResetZoomTitle("")));
does not seem to hide the reset zoom button altogether - there is a small empty circle which can be clicked to reset the chart... how can we hide the button.
Any one??? would really appreciate any help.
thanks
Not sure on if there's an official way to hide the reset zoom button within Highcharts, but one quick hack may be to just position the button off screen. E.g. set the "chart/resetZoomButton/position/y" option to something like '-3000'.
That worked !! thanks!!
Last edit: Anu 2013-06-10