├── .api └── v1.12.0 │ ├── PowerBI-visuals.d.ts │ ├── schema.capabilities.json │ ├── schema.dependencies.json │ ├── schema.pbiviz.json │ └── schema.stringResources.json ├── .gitignore ├── .npmignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── PRIVACY.MD ├── Power BI - Default Custom Visual EULA.pdf ├── README.md ├── Sample PBIX └── KPI Indicator.pbix ├── assets ├── Screendump.png ├── SmallIllustration.png └── icon.png ├── capabilities.json ├── dist ├── kPIIndicator 2_0-4_Preview.pbiviz ├── kPIIndicator 2_0-4_Preview.zip ├── kPIIndicator 2_0_2_Preview.zip ├── kPIIndicator 2_0_3_Preview.pbiviz ├── kPIIndicator 2_0_3_Preview.zip └── kPIIndicator.pbiviz ├── external └── hashtable.js ├── package.json ├── pbiviz.json ├── screenshot.png ├── src ├── objectEnumerationUtility.ts ├── tooltipServiceWrapper.ts ├── utils.ts └── visual.ts ├── style └── visual.less ├── tsconfig.json ├── typings.json └── typings ├── globals ├── d3 │ ├── index.d.ts │ └── typings.json ├── jquery │ ├── index.d.ts │ └── typings.json └── lodash │ ├── index.d.ts │ └── typings.json └── index.d.ts /.api/v1.12.0/PowerBI-visuals.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.api/v1.12.0/PowerBI-visuals.d.ts -------------------------------------------------------------------------------- /.api/v1.12.0/schema.capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.api/v1.12.0/schema.capabilities.json -------------------------------------------------------------------------------- /.api/v1.12.0/schema.dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.api/v1.12.0/schema.dependencies.json -------------------------------------------------------------------------------- /.api/v1.12.0/schema.pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.api/v1.12.0/schema.pbiviz.json -------------------------------------------------------------------------------- /.api/v1.12.0/schema.stringResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.api/v1.12.0/schema.stringResources.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .tmp 2 | 3 | node_modules 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | typings 2 | node_modules 3 | .DS_Store 4 | .tmp 5 | dist 6 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/PRIVACY.MD -------------------------------------------------------------------------------- /Power BI - Default Custom Visual EULA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/Power BI - Default Custom Visual EULA.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/README.md -------------------------------------------------------------------------------- /Sample PBIX/KPI Indicator.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/Sample PBIX/KPI Indicator.pbix -------------------------------------------------------------------------------- /assets/Screendump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/assets/Screendump.png -------------------------------------------------------------------------------- /assets/SmallIllustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/assets/SmallIllustration.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/assets/icon.png -------------------------------------------------------------------------------- /capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/capabilities.json -------------------------------------------------------------------------------- /dist/kPIIndicator 2_0-4_Preview.pbiviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/dist/kPIIndicator 2_0-4_Preview.pbiviz -------------------------------------------------------------------------------- /dist/kPIIndicator 2_0-4_Preview.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/dist/kPIIndicator 2_0-4_Preview.zip -------------------------------------------------------------------------------- /dist/kPIIndicator 2_0_2_Preview.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/dist/kPIIndicator 2_0_2_Preview.zip -------------------------------------------------------------------------------- /dist/kPIIndicator 2_0_3_Preview.pbiviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/dist/kPIIndicator 2_0_3_Preview.pbiviz -------------------------------------------------------------------------------- /dist/kPIIndicator 2_0_3_Preview.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/dist/kPIIndicator 2_0_3_Preview.zip -------------------------------------------------------------------------------- /dist/kPIIndicator.pbiviz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/dist/kPIIndicator.pbiviz -------------------------------------------------------------------------------- /external/hashtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/external/hashtable.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/package.json -------------------------------------------------------------------------------- /pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/pbiviz.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/objectEnumerationUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/src/objectEnumerationUtility.ts -------------------------------------------------------------------------------- /src/tooltipServiceWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/src/tooltipServiceWrapper.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/visual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/src/visual.ts -------------------------------------------------------------------------------- /style/visual.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/style/visual.less -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings.json -------------------------------------------------------------------------------- /typings/globals/d3/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/globals/d3/index.d.ts -------------------------------------------------------------------------------- /typings/globals/d3/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/globals/d3/typings.json -------------------------------------------------------------------------------- /typings/globals/jquery/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/globals/jquery/index.d.ts -------------------------------------------------------------------------------- /typings/globals/jquery/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/globals/jquery/typings.json -------------------------------------------------------------------------------- /typings/globals/lodash/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/globals/lodash/index.d.ts -------------------------------------------------------------------------------- /typings/globals/lodash/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/globals/lodash/typings.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fredrikheden/kpiindicator/HEAD/typings/index.d.ts --------------------------------------------------------------------------------