I use the R package radarchart for plotting interactive radarcharts. I want to manipulate the plot by setting parameters, which are not mentioned in the package manual. Its possible to pass options to chart.js by ... argument by using matching options to http://www.chartjs.org/docs/#getting-started-global-chart-configuration.
labs <- c("Communicator", "Data Wangler", "Programmer", "Technologist", "Modeller", "Visualizer")
scores <- list("Rich" = c(9, 7, 4, 5, 3, 7),
"Andy" = c(7, 6, 6, 2, 6, 9),
"Aimee" = c(6, 5, 8, 4, 7, 6))
chartJSRadar(scores=scores, labs=labs)
For example, I tried to change the grid color, but this doesn't work.
chartJSRadar(scores=scores, labs=labs,
scale=list(gridLines=list(color="black")))