├── .gitattributes ├── .gitignore ├── ClassBinning.qvf ├── HeatmapSelection.gif ├── LICENSE.md ├── Qlik Hackathon 2015 Start.qvf ├── README.md ├── Screenshot1.PNG ├── Screenshot2.PNG ├── Screenshot3.PNG ├── Screenshot4.PNG ├── Screenshot5.PNG ├── Test Heatmap.qvf ├── bi-irregular-2dim-heatmap.zip └── bi-irregular-2dim-heatmap ├── bi-irregular-2dim-heatmap.js ├── bi-irregular-2dim-heatmap.qext ├── scripts ├── d3.min.js ├── irregularUtils.js └── lasso_adj.js ├── styles └── bi-irregular-2dim-heatmap.css └── wbfolder.wbl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/.gitignore -------------------------------------------------------------------------------- /ClassBinning.qvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/ClassBinning.qvf -------------------------------------------------------------------------------- /HeatmapSelection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/HeatmapSelection.gif -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Qlik Hackathon 2015 Start.qvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Qlik Hackathon 2015 Start.qvf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Screenshot1.PNG -------------------------------------------------------------------------------- /Screenshot2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Screenshot2.PNG -------------------------------------------------------------------------------- /Screenshot3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Screenshot3.PNG -------------------------------------------------------------------------------- /Screenshot4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Screenshot4.PNG -------------------------------------------------------------------------------- /Screenshot5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Screenshot5.PNG -------------------------------------------------------------------------------- /Test Heatmap.qvf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/Test Heatmap.qvf -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap.zip -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/bi-irregular-2dim-heatmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/bi-irregular-2dim-heatmap.js -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/bi-irregular-2dim-heatmap.qext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/bi-irregular-2dim-heatmap.qext -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/scripts/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/scripts/d3.min.js -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/scripts/irregularUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/scripts/irregularUtils.js -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/scripts/lasso_adj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/scripts/lasso_adj.js -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/styles/bi-irregular-2dim-heatmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/styles/bi-irregular-2dim-heatmap.css -------------------------------------------------------------------------------- /bi-irregular-2dim-heatmap/wbfolder.wbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfbecher/QlikSense_Extension_2DimHeatmap/HEAD/bi-irregular-2dim-heatmap/wbfolder.wbl --------------------------------------------------------------------------------