├── .editorconfig ├── .github └── workflows │ ├── build.yml │ ├── codeql-analysis.yml │ └── snyk.yml ├── .gitignore ├── .snyk ├── .stylelintrc ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── icon.png ├── icon.svg ├── screenshot.png ├── screenshot2.png └── thumbnail.png ├── capabilities.json ├── eslint.config.mjs ├── karma.conf.ts ├── package.json ├── pbiviz.json ├── src ├── animator.ts ├── behavior.ts ├── enum │ └── enums.ts ├── helpers.ts ├── models │ └── models.ts ├── pulseChartSettingsModel.ts ├── seriesGenerator.ts ├── utils.ts └── visual.ts ├── stringResources ├── ar-SA │ └── resources.resjson ├── bg-BG │ └── resources.resjson ├── ca-ES │ └── resources.resjson ├── cs-CZ │ └── resources.resjson ├── da-DK │ └── resources.resjson ├── de-DE │ └── resources.resjson ├── el-GR │ └── resources.resjson ├── en-US │ └── resources.resjson ├── es-ES │ └── resources.resjson ├── et-EE │ └── resources.resjson ├── eu-ES │ └── resources.resjson ├── fi-FI │ └── resources.resjson ├── fr-FR │ └── resources.resjson ├── gl-ES │ └── resources.resjson ├── he-IL │ └── resources.resjson ├── hi-IN │ └── resources.resjson ├── hr-HR │ └── resources.resjson ├── hu-HU │ └── resources.resjson ├── id-ID │ └── resources.resjson ├── it-IT │ └── resources.resjson ├── ja-JP │ └── resources.resjson ├── kk-KZ │ └── resources.resjson ├── ko-KR │ └── resources.resjson ├── lt-LT │ └── resources.resjson ├── lv-LV │ └── resources.resjson ├── ms-MY │ └── resources.resjson ├── nb-NO │ └── resources.resjson ├── nl-NL │ └── resources.resjson ├── pl-PL │ └── resources.resjson ├── pt-BR │ └── resources.resjson ├── pt-PT │ └── resources.resjson ├── ro-RO │ └── resources.resjson ├── ru-RU │ └── resources.resjson ├── sk-SK │ └── resources.resjson ├── sl-SI │ └── resources.resjson ├── sr-Cyrl-RS │ └── resources.resjson ├── sr-Latn-RS │ └── resources.resjson ├── sv-SE │ └── resources.resjson ├── th-TH │ └── resources.resjson ├── tr-TR │ └── resources.resjson ├── uk-UA │ └── resources.resjson ├── vi-VN │ └── resources.resjson ├── zh-CN │ └── resources.resjson └── zh-TW │ └── resources.resjson ├── style └── pulseChart.less ├── test.tsconfig.json ├── test.webpack.config.js ├── test ├── helpers.ts ├── visualBuilder.ts ├── visualData.ts └── visualTest.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/snyk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.github/workflows/snyk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.gitignore -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.snyk -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/assets/screenshot2.png -------------------------------------------------------------------------------- /assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/assets/thumbnail.png -------------------------------------------------------------------------------- /capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/capabilities.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/karma.conf.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/package.json -------------------------------------------------------------------------------- /pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/pbiviz.json -------------------------------------------------------------------------------- /src/animator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/animator.ts -------------------------------------------------------------------------------- /src/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/behavior.ts -------------------------------------------------------------------------------- /src/enum/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/enum/enums.ts -------------------------------------------------------------------------------- /src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/helpers.ts -------------------------------------------------------------------------------- /src/models/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/models/models.ts -------------------------------------------------------------------------------- /src/pulseChartSettingsModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/pulseChartSettingsModel.ts -------------------------------------------------------------------------------- /src/seriesGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/seriesGenerator.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/visual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/src/visual.ts -------------------------------------------------------------------------------- /stringResources/ar-SA/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ar-SA/resources.resjson -------------------------------------------------------------------------------- /stringResources/bg-BG/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/bg-BG/resources.resjson -------------------------------------------------------------------------------- /stringResources/ca-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ca-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/cs-CZ/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/cs-CZ/resources.resjson -------------------------------------------------------------------------------- /stringResources/da-DK/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/da-DK/resources.resjson -------------------------------------------------------------------------------- /stringResources/de-DE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/de-DE/resources.resjson -------------------------------------------------------------------------------- /stringResources/el-GR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/el-GR/resources.resjson -------------------------------------------------------------------------------- /stringResources/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/en-US/resources.resjson -------------------------------------------------------------------------------- /stringResources/es-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/es-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/et-EE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/et-EE/resources.resjson -------------------------------------------------------------------------------- /stringResources/eu-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/eu-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/fi-FI/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/fi-FI/resources.resjson -------------------------------------------------------------------------------- /stringResources/fr-FR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/fr-FR/resources.resjson -------------------------------------------------------------------------------- /stringResources/gl-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/gl-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/he-IL/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/he-IL/resources.resjson -------------------------------------------------------------------------------- /stringResources/hi-IN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/hi-IN/resources.resjson -------------------------------------------------------------------------------- /stringResources/hr-HR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/hr-HR/resources.resjson -------------------------------------------------------------------------------- /stringResources/hu-HU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/hu-HU/resources.resjson -------------------------------------------------------------------------------- /stringResources/id-ID/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/id-ID/resources.resjson -------------------------------------------------------------------------------- /stringResources/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/it-IT/resources.resjson -------------------------------------------------------------------------------- /stringResources/ja-JP/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ja-JP/resources.resjson -------------------------------------------------------------------------------- /stringResources/kk-KZ/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/kk-KZ/resources.resjson -------------------------------------------------------------------------------- /stringResources/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ko-KR/resources.resjson -------------------------------------------------------------------------------- /stringResources/lt-LT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/lt-LT/resources.resjson -------------------------------------------------------------------------------- /stringResources/lv-LV/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/lv-LV/resources.resjson -------------------------------------------------------------------------------- /stringResources/ms-MY/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ms-MY/resources.resjson -------------------------------------------------------------------------------- /stringResources/nb-NO/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/nb-NO/resources.resjson -------------------------------------------------------------------------------- /stringResources/nl-NL/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/nl-NL/resources.resjson -------------------------------------------------------------------------------- /stringResources/pl-PL/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/pl-PL/resources.resjson -------------------------------------------------------------------------------- /stringResources/pt-BR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/pt-BR/resources.resjson -------------------------------------------------------------------------------- /stringResources/pt-PT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/pt-PT/resources.resjson -------------------------------------------------------------------------------- /stringResources/ro-RO/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ro-RO/resources.resjson -------------------------------------------------------------------------------- /stringResources/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/ru-RU/resources.resjson -------------------------------------------------------------------------------- /stringResources/sk-SK/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/sk-SK/resources.resjson -------------------------------------------------------------------------------- /stringResources/sl-SI/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/sl-SI/resources.resjson -------------------------------------------------------------------------------- /stringResources/sr-Cyrl-RS/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/sr-Cyrl-RS/resources.resjson -------------------------------------------------------------------------------- /stringResources/sr-Latn-RS/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/sr-Latn-RS/resources.resjson -------------------------------------------------------------------------------- /stringResources/sv-SE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/sv-SE/resources.resjson -------------------------------------------------------------------------------- /stringResources/th-TH/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/th-TH/resources.resjson -------------------------------------------------------------------------------- /stringResources/tr-TR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/tr-TR/resources.resjson -------------------------------------------------------------------------------- /stringResources/uk-UA/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/uk-UA/resources.resjson -------------------------------------------------------------------------------- /stringResources/vi-VN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/vi-VN/resources.resjson -------------------------------------------------------------------------------- /stringResources/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/zh-CN/resources.resjson -------------------------------------------------------------------------------- /stringResources/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/stringResources/zh-TW/resources.resjson -------------------------------------------------------------------------------- /style/pulseChart.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/style/pulseChart.less -------------------------------------------------------------------------------- /test.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/test.tsconfig.json -------------------------------------------------------------------------------- /test.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/test.webpack.config.js -------------------------------------------------------------------------------- /test/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/test/helpers.ts -------------------------------------------------------------------------------- /test/visualBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/test/visualBuilder.ts -------------------------------------------------------------------------------- /test/visualData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/test/visualData.ts -------------------------------------------------------------------------------- /test/visualTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/test/visualTest.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-pulsechart/HEAD/tsconfig.json --------------------------------------------------------------------------------