Highcharter deprecated function's output is different than suggested

一曲冷凌霜 提交于 2019-12-05 19:52:27

The graph you want is of type 'stock' instead of the default 'chart' (think 'Highcharts' vs 'Highstock').

Specifying the type solve your issue:

highchart(type = 'stock') %>% 
    hc_add_series(t) %>% 
    hc_xAxis(type = 'datetime')

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!