Permalink
Browse files

Import examples into demo so users can run them.

  • Loading branch information...
1 parent 1040057 commit c0e283614e3db643114bb50801956182848f76e3 @kohske kohske committed Feb 25, 2014
Showing with 1,735 additions and 0 deletions.
  1. +9 −0 demo/00Index
  2. +36 −0 demo/datatables.R
  3. +969 −0 demo/dimple.R
  4. +102 −0 demo/highcharts.R
  5. +206 −0 demo/leaflet.R
  6. +43 −0 demo/morris.R
  7. +196 −0 demo/nvd3.R
  8. +53 −0 demo/polycharts.R
  9. +91 −0 demo/rickshaw.R
  10. +30 −0 demo/xcharts.R
View
@@ -0,0 +1,9 @@
+datatables
+dimple
+highcharts
+leaflet
+morris
+nvd3
+polycharts
+rickshaw
+xcharts
View
@@ -0,0 +1,36 @@
+..p. <- function() invisible(readline("\nPress <return> to continue: "))
+library(rCharts)
+
+dt <- dTable(
+ iris,
+ sPaginationType= "full_numbers"
+)
+dt
+
+..p.() # ================================
+
+dt <- dTable(
+ iris,
+ bScrollInfinite = T,
+ bScrollCollapse = T,
+ sScrollY = "200px",
+ width = "500px"
+)
+dt
+
+..p.() # ================================
+
+data(Orange)
+dt <- dTable(
+ Orange,
+ sScrollY = "200px",
+ bScrollCollapse = T,
+ bPaginate = F,
+ bJQueryUI = T,
+ aoColumnDefs = list(
+ sWidth = "5%", aTargets = list(-1)
+ )
+)
+dt
+
+..p.() # ================================
Oops, something went wrong.

0 comments on commit c0e2836

Please sign in to comment.