1. dat<- data.frame(
  2. Gene_Name= LETTERS[1:15],
  3. Value1 = sample(-8:20,15,replace=TRUE),
  4. Value2 =sample(-6:10,15,replace=TRUE)
  5. )
  6. library(rCharts)
  7. r1<- nPlot(Value1~Value2,data=dat, type="scatterChart")
  8. r1$chart(tooltipContent = "#! function(key, x, y, e){
  9. return '<b>Gene Name</b>: ' + e.point.Gene_Name
  10. } !#")
  11. r1