[R] Better scrolling feature in ggplot using Shiny???

2016-01-04 Thread Kunal Shah
Hello, I have plotted a ggplot of large data around 3 points. I opened it in Shiny. I want a scrolling feature so that I can just scroll the data. I tried to write a code in Shiny where the user can select the slider range. But "scrolling" by that is not efficient and not at all smooth Any

Re: [R] Better scrolling feature in ggplot using Shiny???

2016-01-04 Thread Jeff Newmiller
Server-side rendering of large amounts of data is often criticized this way. In general, the answer lies in client-side rendering, which these days usually means serving a Web page with embedded data and Javascript (e.g. D3), not ggplot images. The drawback seems to be a significant amount of