1. ## one way (probably temporary) of making a Title for a dimplejs plot
  2. require(rCharts)
  3. # use the classic iris dataset from R
  4. # but add a column for observation so no aggregation on our scatter chart
  5. iris.df <- data.frame(rownames(iris),iris)
  6. colnames(iris.df)[1] <- "obs"
  7. d1 <- dPlot(
  8. Sepal.Width ~ Petal.Length,
  9. groups = c("obs","Species"),
  10. data = iris.df,
  11. type = "bubble"
  12. )
  13. d1$xAxis( type = "addMeasureAxis" )
  14. # not the right way but a way of specifying a template
  15. # I put one up as an example of how we can specify a Title in R for our plot
  16. d1$templates$script = "//timelyportfolio.github.io/rCharts_dimple/chartWithTitle.html"
  17. # now set a title for our chart
  18. d1$set( title = "Iris Data with dimplejs" )
  19. d1