Permalink
Please sign in to comment.
Showing
with
1,735 additions
and 0 deletions.
- +9 −0 demo/00Index
- +36 −0 demo/datatables.R
- +969 −0 demo/dimple.R
- +102 −0 demo/highcharts.R
- +206 −0 demo/leaflet.R
- +43 −0 demo/morris.R
- +196 −0 demo/nvd3.R
- +53 −0 demo/polycharts.R
- +91 −0 demo/rickshaw.R
- +30 −0 demo/xcharts.R
| @@ -0,0 +1,9 @@ | ||
| +datatables | ||
| +dimple | ||
| +highcharts | ||
| +leaflet | ||
| +morris | ||
| +nvd3 | ||
| +polycharts | ||
| +rickshaw | ||
| +xcharts |
| @@ -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