How to set highchart global options IN R
问题 I see a lot of examples in javascript but I cannot find an example to do it in R Here is the api link: http://api.highcharts.com/highcharts#global I am trying to set "timezoneOffset" and I have tried many different ways. When I do this in R: highChart$global(timezoneOffset=-300) I do not get any warning or error, but it's not working. Thanks a lot for the help! Here is a piece of code: library(rCharts) highChart <- Highcharts$new() highChart$global(timezoneOffset=-300) highChart$chart