I'm trying to change the color of the bars for a discreteBarChart using nPlot, but the color argument doesn't seem to change anything in the example below:
data(cars)
speedTableVec<-table(cars$speed)
speedTable<-data.frame(speedTableVec)
n1<-nPlot(Freq ~ Var1, data=speedTable, type="discreteBarChart", color="blue")
n1
Is there a way to keep the bars consistently one color (i.e. blue)? Thanks.