Closed stephenturner closed 7 years ago
I'm getting close with hc_add_series()
but the labels aren't showing up. Not sure how to fix.
I.e., instead of
highchart() %>%
hc_add_series_scatter(x = kubrick$year, y = kubrick$rating, z = kubrick$budget, label = kubrick$title)
highchart() %>%
hc_add_series(data=kubrick, hcaes(x = year, y = rating, z = budget, label=title), type="scatter")
mostly works, but no labels. @vpnagraj
@stephenturner sorry i started digging into this back in march and pretty sure i got to same place you did ... will investigate again may have to just change that example 👎
teaching this workshop again in a few weeks so i might even add another js package as an example ... if so, will try to resolve this with that PR
Some warnings on building the interactive viz lesson:
@vpnagraj