├── .github └── workflows │ ├── build.yml │ └── codeql.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── icon.png ├── icon.svg ├── screenshot.png └── thumbnail.png ├── capabilities.json ├── eslint.config.mjs ├── karma.conf.ts ├── package.json ├── pbiviz.json ├── src ├── behavior.ts ├── columns.ts ├── drawButtons.ts ├── durationHelper.ts ├── enums.ts ├── gantt.ts ├── interfaces.ts ├── services │ ├── settingsService.ts │ └── settingsState.ts ├── settings │ ├── cards │ │ ├── backgroundCard.ts │ │ ├── baseFontCard.ts │ │ ├── dateTypeCard.ts │ │ ├── daysOffCard.ts │ │ ├── generalCard.ts │ │ ├── interfaces │ │ │ └── ISetHighContrastMode.ts │ │ ├── legendCard.ts │ │ ├── milestonesCard.ts │ │ ├── task │ │ │ ├── collapsedTasksCard.ts │ │ │ ├── collapsedTasksUpdateIdCard.ts │ │ │ ├── subTasksCard.ts │ │ │ ├── taskCompletionCard.ts │ │ │ ├── taskConfigCard.ts │ │ │ ├── taskLabelsCard.ts │ │ │ └── taskResourceCard.ts │ │ └── tooltipCard.ts │ ├── enumOptions.ts │ └── ganttChartSettingsModels.ts └── utils.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 └── gantt.less ├── test.tsconfig.json ├── test.webpack.config.js ├── test ├── helpers │ └── helpers.ts ├── visualBuilder.ts ├── visualData.ts └── visualTest.ts └── tsconfig.json /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/assets/thumbnail.png -------------------------------------------------------------------------------- /capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/capabilities.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/karma.conf.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/package.json -------------------------------------------------------------------------------- /pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/pbiviz.json -------------------------------------------------------------------------------- /src/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/behavior.ts -------------------------------------------------------------------------------- /src/columns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/columns.ts -------------------------------------------------------------------------------- /src/drawButtons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/drawButtons.ts -------------------------------------------------------------------------------- /src/durationHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/durationHelper.ts -------------------------------------------------------------------------------- /src/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/enums.ts -------------------------------------------------------------------------------- /src/gantt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/gantt.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /src/services/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/services/settingsService.ts -------------------------------------------------------------------------------- /src/services/settingsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/services/settingsState.ts -------------------------------------------------------------------------------- /src/settings/cards/backgroundCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/backgroundCard.ts -------------------------------------------------------------------------------- /src/settings/cards/baseFontCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/baseFontCard.ts -------------------------------------------------------------------------------- /src/settings/cards/dateTypeCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/dateTypeCard.ts -------------------------------------------------------------------------------- /src/settings/cards/daysOffCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/daysOffCard.ts -------------------------------------------------------------------------------- /src/settings/cards/generalCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/generalCard.ts -------------------------------------------------------------------------------- /src/settings/cards/interfaces/ISetHighContrastMode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/interfaces/ISetHighContrastMode.ts -------------------------------------------------------------------------------- /src/settings/cards/legendCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/legendCard.ts -------------------------------------------------------------------------------- /src/settings/cards/milestonesCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/milestonesCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/collapsedTasksCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/collapsedTasksCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/collapsedTasksUpdateIdCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/collapsedTasksUpdateIdCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/subTasksCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/subTasksCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/taskCompletionCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/taskCompletionCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/taskConfigCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/taskConfigCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/taskLabelsCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/taskLabelsCard.ts -------------------------------------------------------------------------------- /src/settings/cards/task/taskResourceCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/task/taskResourceCard.ts -------------------------------------------------------------------------------- /src/settings/cards/tooltipCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/cards/tooltipCard.ts -------------------------------------------------------------------------------- /src/settings/enumOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/enumOptions.ts -------------------------------------------------------------------------------- /src/settings/ganttChartSettingsModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/settings/ganttChartSettingsModels.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/src/utils.ts -------------------------------------------------------------------------------- /stringResources/ar-SA/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ar-SA/resources.resjson -------------------------------------------------------------------------------- /stringResources/bg-BG/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/bg-BG/resources.resjson -------------------------------------------------------------------------------- /stringResources/ca-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ca-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/cs-CZ/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/cs-CZ/resources.resjson -------------------------------------------------------------------------------- /stringResources/da-DK/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/da-DK/resources.resjson -------------------------------------------------------------------------------- /stringResources/de-DE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/de-DE/resources.resjson -------------------------------------------------------------------------------- /stringResources/el-GR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/el-GR/resources.resjson -------------------------------------------------------------------------------- /stringResources/en-US/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/en-US/resources.resjson -------------------------------------------------------------------------------- /stringResources/es-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/es-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/et-EE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/et-EE/resources.resjson -------------------------------------------------------------------------------- /stringResources/eu-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/eu-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/fi-FI/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/fi-FI/resources.resjson -------------------------------------------------------------------------------- /stringResources/fr-FR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/fr-FR/resources.resjson -------------------------------------------------------------------------------- /stringResources/gl-ES/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/gl-ES/resources.resjson -------------------------------------------------------------------------------- /stringResources/he-IL/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/he-IL/resources.resjson -------------------------------------------------------------------------------- /stringResources/hi-IN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/hi-IN/resources.resjson -------------------------------------------------------------------------------- /stringResources/hr-HR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/hr-HR/resources.resjson -------------------------------------------------------------------------------- /stringResources/hu-HU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/hu-HU/resources.resjson -------------------------------------------------------------------------------- /stringResources/id-ID/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/id-ID/resources.resjson -------------------------------------------------------------------------------- /stringResources/it-IT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/it-IT/resources.resjson -------------------------------------------------------------------------------- /stringResources/ja-JP/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ja-JP/resources.resjson -------------------------------------------------------------------------------- /stringResources/kk-KZ/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/kk-KZ/resources.resjson -------------------------------------------------------------------------------- /stringResources/ko-KR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ko-KR/resources.resjson -------------------------------------------------------------------------------- /stringResources/lt-LT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/lt-LT/resources.resjson -------------------------------------------------------------------------------- /stringResources/lv-LV/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/lv-LV/resources.resjson -------------------------------------------------------------------------------- /stringResources/ms-MY/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ms-MY/resources.resjson -------------------------------------------------------------------------------- /stringResources/nb-NO/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/nb-NO/resources.resjson -------------------------------------------------------------------------------- /stringResources/nl-NL/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/nl-NL/resources.resjson -------------------------------------------------------------------------------- /stringResources/pl-PL/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/pl-PL/resources.resjson -------------------------------------------------------------------------------- /stringResources/pt-BR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/pt-BR/resources.resjson -------------------------------------------------------------------------------- /stringResources/pt-PT/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/pt-PT/resources.resjson -------------------------------------------------------------------------------- /stringResources/ro-RO/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ro-RO/resources.resjson -------------------------------------------------------------------------------- /stringResources/ru-RU/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/ru-RU/resources.resjson -------------------------------------------------------------------------------- /stringResources/sk-SK/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/sk-SK/resources.resjson -------------------------------------------------------------------------------- /stringResources/sl-SI/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/sl-SI/resources.resjson -------------------------------------------------------------------------------- /stringResources/sr-Cyrl-RS/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/sr-Cyrl-RS/resources.resjson -------------------------------------------------------------------------------- /stringResources/sr-Latn-RS/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/sr-Latn-RS/resources.resjson -------------------------------------------------------------------------------- /stringResources/sv-SE/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/sv-SE/resources.resjson -------------------------------------------------------------------------------- /stringResources/th-TH/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/th-TH/resources.resjson -------------------------------------------------------------------------------- /stringResources/tr-TR/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/tr-TR/resources.resjson -------------------------------------------------------------------------------- /stringResources/uk-UA/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/uk-UA/resources.resjson -------------------------------------------------------------------------------- /stringResources/vi-VN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/vi-VN/resources.resjson -------------------------------------------------------------------------------- /stringResources/zh-CN/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/zh-CN/resources.resjson -------------------------------------------------------------------------------- /stringResources/zh-TW/resources.resjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/stringResources/zh-TW/resources.resjson -------------------------------------------------------------------------------- /style/gantt.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/style/gantt.less -------------------------------------------------------------------------------- /test.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/test.tsconfig.json -------------------------------------------------------------------------------- /test.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/test.webpack.config.js -------------------------------------------------------------------------------- /test/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/test/helpers/helpers.ts -------------------------------------------------------------------------------- /test/visualBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/test/visualBuilder.ts -------------------------------------------------------------------------------- /test/visualData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/test/visualData.ts -------------------------------------------------------------------------------- /test/visualTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/test/visualTest.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/powerbi-visuals-gantt/HEAD/tsconfig.json --------------------------------------------------------------------------------