├── NEWS ├── inst ├── slidify │ ├── libraries │ │ ├── frameworks │ │ │ └── shower │ │ │ │ ├── config.yml │ │ │ │ ├── themes │ │ │ │ └── ribbon │ │ │ │ │ ├── images │ │ │ │ │ ├── linen.png │ │ │ │ │ ├── linen@2x.png │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── grid-16x10.svg │ │ │ │ │ └── grid-4x3.svg │ │ │ │ │ ├── fonts │ │ │ │ │ ├── PTMono.woff │ │ │ │ │ ├── PTSans.woff │ │ │ │ │ ├── PTSans.Bold.woff │ │ │ │ │ ├── PTSans.Italic.woff │ │ │ │ │ ├── PTSans.Bold.Italic.woff │ │ │ │ │ └── PTSans.Narrow.Bold.woff │ │ │ │ │ ├── pictures │ │ │ │ │ ├── exact.png │ │ │ │ │ ├── square.png │ │ │ │ │ ├── tall.png │ │ │ │ │ └── wide.png │ │ │ │ │ ├── styles │ │ │ │ │ ├── print.css │ │ │ │ │ ├── fonts.scss │ │ │ │ │ ├── reset.scss │ │ │ │ │ ├── print.scss │ │ │ │ │ └── defaults.scss │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── License.txt │ │ │ │ │ ├── Contributing.md │ │ │ │ │ └── index.html │ │ │ │ ├── layouts │ │ │ │ ├── slide.html │ │ │ │ ├── slide0.html │ │ │ │ └── deck.html │ │ │ │ ├── partials │ │ │ │ └── head.html │ │ │ │ ├── License.txt │ │ │ │ ├── Contributing.md │ │ │ │ └── Readme.md │ │ └── highlighters │ │ │ └── highlight.js │ │ │ ├── css │ │ │ ├── pojoaque.jpg │ │ │ ├── school_book.png │ │ │ ├── brown_papersq.png │ │ │ ├── ascetic.css │ │ │ ├── hemisu-light.css │ │ │ ├── tomorrow.css │ │ │ ├── tomorrow_night.css │ │ │ ├── solarized_dark.css │ │ │ ├── solarized_light.css │ │ │ ├── ir_black.css │ │ │ ├── vs.css │ │ │ ├── pojoaque.css │ │ │ ├── dark.css │ │ │ ├── brown_paper.css │ │ │ ├── idea.css │ │ │ ├── far.css │ │ │ ├── monokai.css │ │ │ ├── zenburn.css │ │ │ ├── github.css │ │ │ ├── magula.css │ │ │ ├── school_book.css │ │ │ ├── googlecode.css │ │ │ ├── sunburst.css │ │ │ ├── default.css │ │ │ ├── xcode.css │ │ │ └── arta.css │ │ │ └── highlight.js.html │ ├── .cache │ │ ├── __packages │ │ ├── unnamed-chunk-1_1dedafd1b725b95e78ea340e4bdf6477.RData │ │ ├── unnamed-chunk-1_1dedafd1b725b95e78ea340e4bdf6477.rdb │ │ ├── unnamed-chunk-1_1dedafd1b725b95e78ea340e4bdf6477.rdx │ │ ├── unnamed-chunk-2_1fbd39688e2b2a2a8fe54229e1d8a555.RData │ │ ├── unnamed-chunk-2_1fbd39688e2b2a2a8fe54229e1d8a555.rdb │ │ ├── unnamed-chunk-2_1fbd39688e2b2a2a8fe54229e1d8a555.rdx │ │ ├── unnamed-chunk-3_2f152dc99c3bde01b87c9c1bdf14955b.RData │ │ ├── unnamed-chunk-3_2f152dc99c3bde01b87c9c1bdf14955b.rdb │ │ ├── unnamed-chunk-3_2f152dc99c3bde01b87c9c1bdf14955b.rdx │ │ ├── unnamed-chunk-4_33413a539c918c837e5acf9dd2cb7cd2.RData │ │ ├── unnamed-chunk-4_33413a539c918c837e5acf9dd2cb7cd2.rdb │ │ ├── unnamed-chunk-4_33413a539c918c837e5acf9dd2cb7cd2.rdx │ │ ├── unnamed-chunk-5_5aa17923dc7c0b814cb51eaa7fc81780.RData │ │ ├── unnamed-chunk-5_5aa17923dc7c0b814cb51eaa7fc81780.rdb │ │ └── unnamed-chunk-5_5aa17923dc7c0b814cb51eaa7fc81780.rdx │ ├── index.md │ ├── index.html │ └── index.Rmd ├── tooltip │ ├── cityDF.csv │ ├── mapData.txt │ ├── tooltip.csv │ ├── tooltip.tsv │ ├── tooltip.txt │ └── tooltip.xlsx ├── template │ ├── caption.html │ ├── footer.html │ ├── header.html │ ├── header_GBK.html │ └── chart.recharts.html ├── examples │ ├── testDataForMap.csv │ ├── xPie.html │ ├── irisBar.html │ └── irisRadar.html └── shiny │ ├── recharts_shiny_integrated │ ├── new.csv │ ├── testData.csv │ ├── testData.rda │ ├── server.R │ └── www │ │ └── index.html │ ├── lazyPlot │ ├── eLine_Area │ │ └── www │ │ │ └── tooltip.js │ ├── eForce │ │ ├── server.R │ │ └── ui.R │ ├── ePie │ │ ├── server.R │ │ └── ui.R │ ├── ui.R │ ├── server.R │ └── eMap │ │ ├── ui.R │ │ └── www │ │ └── script.js │ ├── recharts_shiny_football │ ├── football.rda │ ├── testData_state.csv │ ├── testData.csv │ ├── server.R │ └── www │ │ └── index.html │ ├── recharts_shiny_football_en │ ├── football.rda │ ├── testData_state.csv │ ├── test.csv │ ├── testData.csv │ ├── server.R │ └── www │ │ └── index.html │ ├── rechartsWidget.html │ ├── recharts_shiny_pie │ ├── ui.R │ └── server.R │ └── recharts_shiny_eForce │ ├── ui.R │ └── server.R ├── screenshots ├── xPie.PNG ├── irisArea.PNG ├── irisBar.PNG ├── irisLine.PNG ├── irisPoints.PNG ├── irisChinaMap.PNG └── irisLineZoom.PNG ├── .Rbuildignore ├── demo ├── lazyRecharts.R ├── recharts_slidify.R ├── recharts_shiny.R ├── recharts_shiny_pie.R ├── recharts_shiny_football.R ├── recharts_shiny_integrated.R ├── lazyRecharts_Map.R ├── recharts.R └── recharts_knitr.Rmd ├── man ├── pause.Rd ├── renderEcharts.Rd ├── recharts.shiny.init.Rd ├── recharts.init.Rd ├── eLine.Rd ├── eArea.Rd ├── ePie.Rd ├── plot.recharts.Rd ├── print.recharts.Rd ├── ePoints.Rd ├── eMap.Rd ├── eRadar.Rd ├── eBar.Rd └── eForce.Rd ├── NAMESPACE ├── R ├── lazyPlot.R ├── zzz.R ├── config.R ├── eRadar.R ├── ePie.R ├── eBar.R ├── eMap.R └── ePoints.R ├── DESCRIPTION ├── .travis.yml ├── LICENSE.TXT └── README.md /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inst/slidify/libraries/frameworks/shower/config.yml: -------------------------------------------------------------------------------- 1 | shower: 2 | theme: ribbon 3 | -------------------------------------------------------------------------------- /inst/slidify/.cache/__packages: -------------------------------------------------------------------------------- 1 | base 2 | plyr 3 | recharts 4 | RJSONIO 5 | slidify 6 | -------------------------------------------------------------------------------- /inst/slidify/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/slidify/index.md -------------------------------------------------------------------------------- /screenshots/xPie.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/xPie.PNG -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | NEWS.md 3 | ^\.Rproj\.user$ 4 | ^.*\.Rproj$ 5 | FAQ.md 6 | Makefile 7 | -------------------------------------------------------------------------------- /inst/slidify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/slidify/index.html -------------------------------------------------------------------------------- /inst/tooltip/cityDF.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/tooltip/cityDF.csv -------------------------------------------------------------------------------- /inst/tooltip/mapData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/tooltip/mapData.txt -------------------------------------------------------------------------------- /inst/tooltip/tooltip.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/tooltip/tooltip.csv -------------------------------------------------------------------------------- /inst/tooltip/tooltip.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/tooltip/tooltip.tsv -------------------------------------------------------------------------------- /inst/tooltip/tooltip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/tooltip/tooltip.txt -------------------------------------------------------------------------------- /screenshots/irisArea.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/irisArea.PNG -------------------------------------------------------------------------------- /screenshots/irisBar.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/irisBar.PNG -------------------------------------------------------------------------------- /screenshots/irisLine.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/irisLine.PNG -------------------------------------------------------------------------------- /inst/tooltip/tooltip.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/inst/tooltip/tooltip.xlsx -------------------------------------------------------------------------------- /screenshots/irisPoints.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/irisPoints.PNG -------------------------------------------------------------------------------- /screenshots/irisChinaMap.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/irisChinaMap.PNG -------------------------------------------------------------------------------- /screenshots/irisLineZoom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lchiffon/recharts/master/screenshots/irisLineZoom.PNG -------------------------------------------------------------------------------- /inst/template/caption.html: -------------------------------------------------------------------------------- 1 | 2 |