You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In chartOpts for various charts, have names on a vector of colors can screw things up. Could we automatically strip those off in some cases, so that on the javascript side they're a vector not a list/object?
n<-10x<- rnorm(n)
y<- rnorm(n)
g<- sample(1:2, n, replace=TRUE)
ptcolor<- setNames(c("blue", "red"), c("blue", "red"))
iplot(x, y, group=g, chartOpts=list(pointcolor=ptcolor))
iplot(x, y, group=g, chartOpts=list(pointcolor= setNames(ptcolor, NULL) ))
The text was updated successfully, but these errors were encountered:
In
chartOpts
for various charts, have names on a vector of colors can screw things up. Could we automatically strip those off in some cases, so that on the javascript side they're a vector not a list/object?The text was updated successfully, but these errors were encountered: