Open morankor opened 11 years ago
here are the R code to generate the dataframe:
df<-as.data.frame(cbind(c(as.character(seq(as.Date('2013-11-01'),as.Date('2013-11-10'),by="days"))),c(2.244,2.17,2.08,3.6,1.89),c(1:10+rnorm(10,0.5))))
names(df)<-c("date","series1","series2")
Hi All,
I am trying to include two different nvd3 graphs on a single page (shiny app) using rCharts.
I need to customize the tooltips for one of them so I use the following settings:
for some reason , the tooltip on another chart ,a regular "lineChart" also stop working ,
I am attaching an example of the first chart maybe there is something else wrong there:
the data frame:
and the graph generating function:
The graph looks great , but the tooltip is not working....
Please Help!
Thanks!
MorKo