1. require(rCharts)
  2. df <- data.frame(var = 1:10, x=(1:10)/100)
  3. dP <- dPlot( x ~ x, groups = "var", data=df, type = "bubble")
  4. dP$xAxis(
  5. type = "addMeasureAxis",
  6. outputFormat = ".2%"
  7. )
  8. dP$yAxis(
  9. type = "addMeasureAxis", #y axis measure by default but do anyways
  10. outputFormat = ".2f" #do fixed 2 decimal just as demo
  11. )
  12. dP