I have some googleVis charts in a shiny app, but googleVis shorten the label on the horizontal axis by default when they are too long. How do I prevent this behavior? The example below replicates the behavior I would like to prevent:
df=data.frame(country=c(paste(rep("very very long label", 1e+2)), "GB", "BR"),
val1=c(10,13,14),
val2=c(23,12,32))
Line <- gvisLineChart(df)
plot(Line)
The link to the documentation is here