├── .gitignore ├── LICENSE ├── README.md ├── assets ├── CaptureExport.PNG ├── Funnel_LongDescription.txt ├── Funnel_ShortDescription.txt ├── Icon4Store.pdn ├── Icon4Store300x300.png ├── Screen4Store1.png ├── Screen4Store2.png ├── Screen4Store3.png ├── Screen4Store4.png ├── icon.png └── sample.pbix ├── capabilities.json ├── dependencies.json ├── package.json ├── pbiviz.json ├── r_files ├── flatten_HTML.r └── utils.r ├── script.r ├── src ├── htmlInjectionUtility.ts ├── settings.ts └── visual.ts ├── style └── visual.less ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/README.md -------------------------------------------------------------------------------- /assets/CaptureExport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/CaptureExport.PNG -------------------------------------------------------------------------------- /assets/Funnel_LongDescription.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Funnel_LongDescription.txt -------------------------------------------------------------------------------- /assets/Funnel_ShortDescription.txt: -------------------------------------------------------------------------------- 1 | Find outliers in your data, using a funnel plot. -------------------------------------------------------------------------------- /assets/Icon4Store.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Icon4Store.pdn -------------------------------------------------------------------------------- /assets/Icon4Store300x300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Icon4Store300x300.png -------------------------------------------------------------------------------- /assets/Screen4Store1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Screen4Store1.png -------------------------------------------------------------------------------- /assets/Screen4Store2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Screen4Store2.png -------------------------------------------------------------------------------- /assets/Screen4Store3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Screen4Store3.png -------------------------------------------------------------------------------- /assets/Screen4Store4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/Screen4Store4.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/sample.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/assets/sample.pbix -------------------------------------------------------------------------------- /capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/capabilities.json -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/dependencies.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/package.json -------------------------------------------------------------------------------- /pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/pbiviz.json -------------------------------------------------------------------------------- /r_files/flatten_HTML.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/r_files/flatten_HTML.r -------------------------------------------------------------------------------- /r_files/utils.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/r_files/utils.r -------------------------------------------------------------------------------- /script.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/script.r -------------------------------------------------------------------------------- /src/htmlInjectionUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/src/htmlInjectionUtility.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/visual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/src/visual.ts -------------------------------------------------------------------------------- /style/visual.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/style/visual.less -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-funnel/HEAD/tslint.json --------------------------------------------------------------------------------