├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── icon.png └── screenshot.png ├── azure-pipelines.yml ├── capabilities.json ├── fonts ├── PowerVisuals.eot ├── PowerVisuals.svg ├── PowerVisuals.ttf └── PowerVisuals.woff ├── karma.conf.ts ├── package.json ├── pbiviz.json ├── specs ├── columnBaseDataBuilderWithgAxisTypeAdaptedData.ts ├── columnBasedDataBuilder.ts ├── common.spec.ts ├── dataBuilder.ts ├── helpers.ts ├── testWrapper.ts └── visualBuilder.ts ├── src ├── columns │ ├── actualValueColumn.ts │ ├── categoryColumn.ts │ ├── comparisonValueColumn.ts │ ├── dateColumn.ts │ ├── hyperlinkColumn.ts │ ├── imageColumn.ts │ ├── kpiIndicatorIndexColumn.ts │ ├── kpiIndicatorValueColumn.ts │ ├── rowBasedMetricNameColumn.ts │ ├── secondComparisonValueColumn.ts │ ├── secondKPIIndicatorValueColumn.ts │ ├── sortOrderColumn.ts │ └── visualDataColumn.ts ├── converter │ ├── columnMapping │ │ └── dataRepresentation │ │ │ ├── dataRepresentationColumnMapping.ts │ │ │ └── dataRepresentationColumnMappingItem.ts │ ├── columnSet │ │ ├── columnSetConverter.ts │ │ └── dataRepresentation │ │ │ └── dataRepresentationColumnSet.ts │ ├── converter.ts │ ├── converterOptions.ts │ └── data │ │ ├── columnBasedModel │ │ └── columnBasedModelConverter.ts │ │ ├── dataConverter.ts │ │ ├── dataRepresentation │ │ ├── dataRepresentation.ts │ │ ├── dataRepresentationAxis.ts │ │ ├── dataRepresentationAxisScale.ts │ │ ├── dataRepresentationAxisValueType.ts │ │ ├── dataRepresentationColumns.ts │ │ ├── dataRepresentationPoint.ts │ │ ├── dataRepresentationPointFilter.ts │ │ ├── dataRepresentationPointGradientColor.ts │ │ ├── dataRepresentationPointSet.ts │ │ ├── dataRepresentationScale.ts │ │ ├── dataRepresentationSeries.ts │ │ ├── dataRepresentationSeriesSet.ts │ │ ├── dataRepresentationSeriesUtils.ts │ │ ├── dataRepresentationType.ts │ │ └── dataRepresentationX.ts │ │ ├── director │ │ └── dataDirector.ts │ │ ├── rowBasedModel │ │ └── rowBasedModelConverter.ts │ │ └── variance │ │ └── varianceStrategy.ts ├── hyperlink │ └── hyperlinkAdapter.ts ├── services │ ├── modalWindowService.ts │ ├── scaleService.ts │ ├── settingsService.ts │ └── state │ │ ├── columnMappingState.ts │ │ ├── settingsState.ts │ │ ├── state.ts │ │ ├── stateService.ts │ │ └── tableInternalState.ts ├── settings │ ├── descriptors │ │ ├── asOfDateSettings.ts │ │ ├── categorySettings.ts │ │ ├── fakeTitleSettings.ts │ │ ├── fontSettings.ts │ │ ├── gridSettings.ts │ │ ├── headerSettings.ts │ │ ├── kpi │ │ │ ├── kpiIndicatorSettings.ts │ │ │ ├── kpiIndicatorValueSettings.ts │ │ │ └── kpiValueSettings.ts │ │ ├── labelSettings.ts │ │ ├── metricSpecificSettings.ts │ │ ├── numberSettingsBase.ts │ │ ├── orderSettings.ts │ │ ├── persistentSettings.ts │ │ ├── popOutGeneralSettings.ts │ │ ├── settingsPropertyBase.ts │ │ ├── settingsWithParser.ts │ │ ├── showSettings.ts │ │ ├── sparklineSettings.ts │ │ ├── subtotalSettings.ts │ │ └── tableSettings.ts │ ├── powerKPISettings.ts │ ├── seriesSettings.ts │ ├── settings.ts │ └── settingsBase.ts ├── utils │ ├── formattingUtils.ts │ ├── numericValueUtils.ts │ └── scrollUtils.ts ├── visual.ts └── visualComponent │ ├── baseComponent.ts │ ├── baseContainerComponent.ts │ ├── columnMapping │ ├── columnMappingButtonComponent.ts │ ├── columnMappingButtonConstructorOptions.ts │ ├── columnMappingColumnSelectorComponent.ts │ ├── columnMappingColumnSelectorConstructorOptions.ts │ ├── columnMappingComponent.ts │ ├── columnMappingDropDownComponent.ts │ ├── columnMappingDropDownComponentRenderOptions.ts │ ├── columnMappingDropDownComponentState.ts │ ├── columnMappingFooterComponent.ts │ ├── columnMappingFooterConstructorOptions.ts │ ├── columnMappingGroupComponent.ts │ ├── columnMappingGroupRenderOptions.ts │ └── columnMappingHeaderComponent.ts │ ├── dynamic │ └── powerKPIComponent.ts │ ├── lazyComponent.ts │ ├── lazyRootComponent.ts │ ├── rootComponent.ts │ ├── table │ ├── body │ │ ├── baseBodyRowComponent.ts │ │ ├── bodyComponent.ts │ │ ├── bodyConstructorOptions.ts │ │ ├── bodyRowComponent.ts │ │ ├── bodyRowConstructorOptions.ts │ │ ├── bodyRowRenderOptions.ts │ │ └── collapsedBodyRowComponent.ts │ ├── cell │ │ ├── cellComponent.ts │ │ ├── cellContainerComponent.ts │ │ ├── cellState.ts │ │ ├── collapser │ │ │ ├── collapserCellComponent.ts │ │ │ ├── collapserCellConstructorOptions.ts │ │ │ └── collapserCellRenderOptions.ts │ │ ├── kpiIndicator │ │ │ ├── kpiIndicatorCellComponent.ts │ │ │ └── kpiIndicatorCellRenderOptions.ts │ │ ├── sparkline │ │ │ ├── dynamic │ │ │ │ ├── dynamicComponentRenderOptions.ts │ │ │ │ ├── referenceDotsComponent.ts │ │ │ │ ├── tooltipComponent.ts │ │ │ │ └── verticalReferenceLineComponent.ts │ │ │ ├── lineComponent.ts │ │ │ ├── lineConstructorOptions.ts │ │ │ ├── lineRenderOptions.ts │ │ │ ├── sparklineCellComponent.ts │ │ │ └── sparklineCellRenderOptions.ts │ │ └── text │ │ │ ├── textCellComponent.ts │ │ │ └── textCellRenderOptions.ts │ ├── draggable │ │ ├── draggableComponent.ts │ │ └── draggableConstructorOptions.ts │ ├── gridComponent.ts │ ├── header │ │ ├── headerRowComponent.ts │ │ └── headerRowRenderOptions.ts │ ├── row │ │ ├── rowComponent.ts │ │ ├── rowComponentConstructorOptions.ts │ │ ├── rowElementsVisibility.ts │ │ └── rowState.ts │ ├── scrollable │ │ └── scrollableConstructorOptions.ts │ ├── tableBaseComponent.ts │ ├── tableComponent.ts │ └── tableState.ts │ ├── visualComponent.ts │ ├── visualComponentConstructorOptions.ts │ ├── visualComponentRenderOptions.ts │ ├── visualComponentRenderOptionsBase.ts │ └── visualComponentStateBase.ts ├── styles └── styles.less ├── test.webpack.config.js ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/capabilities.json -------------------------------------------------------------------------------- /fonts/PowerVisuals.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/fonts/PowerVisuals.eot -------------------------------------------------------------------------------- /fonts/PowerVisuals.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/fonts/PowerVisuals.svg -------------------------------------------------------------------------------- /fonts/PowerVisuals.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/fonts/PowerVisuals.ttf -------------------------------------------------------------------------------- /fonts/PowerVisuals.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/fonts/PowerVisuals.woff -------------------------------------------------------------------------------- /karma.conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/karma.conf.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/package.json -------------------------------------------------------------------------------- /pbiviz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/pbiviz.json -------------------------------------------------------------------------------- /specs/columnBaseDataBuilderWithgAxisTypeAdaptedData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/columnBaseDataBuilderWithgAxisTypeAdaptedData.ts -------------------------------------------------------------------------------- /specs/columnBasedDataBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/columnBasedDataBuilder.ts -------------------------------------------------------------------------------- /specs/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/common.spec.ts -------------------------------------------------------------------------------- /specs/dataBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/dataBuilder.ts -------------------------------------------------------------------------------- /specs/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/helpers.ts -------------------------------------------------------------------------------- /specs/testWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/testWrapper.ts -------------------------------------------------------------------------------- /specs/visualBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/specs/visualBuilder.ts -------------------------------------------------------------------------------- /src/columns/actualValueColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/actualValueColumn.ts -------------------------------------------------------------------------------- /src/columns/categoryColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/categoryColumn.ts -------------------------------------------------------------------------------- /src/columns/comparisonValueColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/comparisonValueColumn.ts -------------------------------------------------------------------------------- /src/columns/dateColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/dateColumn.ts -------------------------------------------------------------------------------- /src/columns/hyperlinkColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/hyperlinkColumn.ts -------------------------------------------------------------------------------- /src/columns/imageColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/imageColumn.ts -------------------------------------------------------------------------------- /src/columns/kpiIndicatorIndexColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/kpiIndicatorIndexColumn.ts -------------------------------------------------------------------------------- /src/columns/kpiIndicatorValueColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/kpiIndicatorValueColumn.ts -------------------------------------------------------------------------------- /src/columns/rowBasedMetricNameColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/rowBasedMetricNameColumn.ts -------------------------------------------------------------------------------- /src/columns/secondComparisonValueColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/secondComparisonValueColumn.ts -------------------------------------------------------------------------------- /src/columns/secondKPIIndicatorValueColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/secondKPIIndicatorValueColumn.ts -------------------------------------------------------------------------------- /src/columns/sortOrderColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/sortOrderColumn.ts -------------------------------------------------------------------------------- /src/columns/visualDataColumn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/columns/visualDataColumn.ts -------------------------------------------------------------------------------- /src/converter/columnMapping/dataRepresentation/dataRepresentationColumnMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/columnMapping/dataRepresentation/dataRepresentationColumnMapping.ts -------------------------------------------------------------------------------- /src/converter/columnMapping/dataRepresentation/dataRepresentationColumnMappingItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/columnMapping/dataRepresentation/dataRepresentationColumnMappingItem.ts -------------------------------------------------------------------------------- /src/converter/columnSet/columnSetConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/columnSet/columnSetConverter.ts -------------------------------------------------------------------------------- /src/converter/columnSet/dataRepresentation/dataRepresentationColumnSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/columnSet/dataRepresentation/dataRepresentationColumnSet.ts -------------------------------------------------------------------------------- /src/converter/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/converter.ts -------------------------------------------------------------------------------- /src/converter/converterOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/converterOptions.ts -------------------------------------------------------------------------------- /src/converter/data/columnBasedModel/columnBasedModelConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/columnBasedModel/columnBasedModelConverter.ts -------------------------------------------------------------------------------- /src/converter/data/dataConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataConverter.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentation.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationAxis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationAxis.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationAxisScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationAxisScale.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationAxisValueType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationAxisValueType.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationColumns.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationPoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationPoint.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationPointFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationPointFilter.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationPointGradientColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationPointGradientColor.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationPointSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationPointSet.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationScale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationScale.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationSeries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationSeries.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationSeriesSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationSeriesSet.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationSeriesUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationSeriesUtils.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationType.ts -------------------------------------------------------------------------------- /src/converter/data/dataRepresentation/dataRepresentationX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/dataRepresentation/dataRepresentationX.ts -------------------------------------------------------------------------------- /src/converter/data/director/dataDirector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/director/dataDirector.ts -------------------------------------------------------------------------------- /src/converter/data/rowBasedModel/rowBasedModelConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/rowBasedModel/rowBasedModelConverter.ts -------------------------------------------------------------------------------- /src/converter/data/variance/varianceStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/converter/data/variance/varianceStrategy.ts -------------------------------------------------------------------------------- /src/hyperlink/hyperlinkAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/hyperlink/hyperlinkAdapter.ts -------------------------------------------------------------------------------- /src/services/modalWindowService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/modalWindowService.ts -------------------------------------------------------------------------------- /src/services/scaleService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/scaleService.ts -------------------------------------------------------------------------------- /src/services/settingsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/settingsService.ts -------------------------------------------------------------------------------- /src/services/state/columnMappingState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/state/columnMappingState.ts -------------------------------------------------------------------------------- /src/services/state/settingsState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/state/settingsState.ts -------------------------------------------------------------------------------- /src/services/state/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/state/state.ts -------------------------------------------------------------------------------- /src/services/state/stateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/state/stateService.ts -------------------------------------------------------------------------------- /src/services/state/tableInternalState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/services/state/tableInternalState.ts -------------------------------------------------------------------------------- /src/settings/descriptors/asOfDateSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/asOfDateSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/categorySettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/categorySettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/fakeTitleSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/fakeTitleSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/fontSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/fontSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/gridSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/gridSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/headerSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/headerSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/kpi/kpiIndicatorSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/kpi/kpiIndicatorSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/kpi/kpiIndicatorValueSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/kpi/kpiIndicatorValueSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/kpi/kpiValueSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/kpi/kpiValueSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/labelSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/labelSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/metricSpecificSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/metricSpecificSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/numberSettingsBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/numberSettingsBase.ts -------------------------------------------------------------------------------- /src/settings/descriptors/orderSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/orderSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/persistentSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/persistentSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/popOutGeneralSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/popOutGeneralSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/settingsPropertyBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/settingsPropertyBase.ts -------------------------------------------------------------------------------- /src/settings/descriptors/settingsWithParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/settingsWithParser.ts -------------------------------------------------------------------------------- /src/settings/descriptors/showSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/showSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/sparklineSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/sparklineSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/subtotalSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/subtotalSettings.ts -------------------------------------------------------------------------------- /src/settings/descriptors/tableSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/descriptors/tableSettings.ts -------------------------------------------------------------------------------- /src/settings/powerKPISettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/powerKPISettings.ts -------------------------------------------------------------------------------- /src/settings/seriesSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/seriesSettings.ts -------------------------------------------------------------------------------- /src/settings/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/settings.ts -------------------------------------------------------------------------------- /src/settings/settingsBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/settings/settingsBase.ts -------------------------------------------------------------------------------- /src/utils/formattingUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/utils/formattingUtils.ts -------------------------------------------------------------------------------- /src/utils/numericValueUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/utils/numericValueUtils.ts -------------------------------------------------------------------------------- /src/utils/scrollUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/utils/scrollUtils.ts -------------------------------------------------------------------------------- /src/visual.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visual.ts -------------------------------------------------------------------------------- /src/visualComponent/baseComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/baseComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/baseContainerComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/baseContainerComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingButtonComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingButtonComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingButtonConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingButtonConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingColumnSelectorComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingColumnSelectorComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingColumnSelectorConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingColumnSelectorConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingDropDownComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingDropDownComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingDropDownComponentRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingDropDownComponentRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingDropDownComponentState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingDropDownComponentState.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingFooterComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingFooterComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingFooterConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingFooterConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingGroupComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingGroupComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingGroupRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingGroupRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/columnMapping/columnMappingHeaderComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/columnMapping/columnMappingHeaderComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/dynamic/powerKPIComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/dynamic/powerKPIComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/lazyComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/lazyComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/lazyRootComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/lazyRootComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/rootComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/rootComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/baseBodyRowComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/baseBodyRowComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/bodyComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/bodyComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/bodyConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/bodyConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/bodyRowComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/bodyRowComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/bodyRowConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/bodyRowConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/bodyRowRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/bodyRowRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/body/collapsedBodyRowComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/body/collapsedBodyRowComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/cellComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/cellComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/cellContainerComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/cellContainerComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/cellState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/cellState.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/collapser/collapserCellComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/collapser/collapserCellComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/collapser/collapserCellConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/collapser/collapserCellConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/collapser/collapserCellRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/collapser/collapserCellRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/kpiIndicator/kpiIndicatorCellComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/kpiIndicator/kpiIndicatorCellComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/kpiIndicator/kpiIndicatorCellRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/kpiIndicator/kpiIndicatorCellRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/dynamic/dynamicComponentRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/dynamic/dynamicComponentRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/dynamic/referenceDotsComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/dynamic/referenceDotsComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/dynamic/tooltipComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/dynamic/tooltipComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/dynamic/verticalReferenceLineComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/dynamic/verticalReferenceLineComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/lineComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/lineComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/lineConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/lineConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/lineRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/lineRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/sparklineCellComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/sparklineCellComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/sparkline/sparklineCellRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/sparkline/sparklineCellRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/text/textCellComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/text/textCellComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/cell/text/textCellRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/cell/text/textCellRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/draggable/draggableComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/draggable/draggableComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/draggable/draggableConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/draggable/draggableConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/gridComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/gridComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/header/headerRowComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/header/headerRowComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/header/headerRowRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/header/headerRowRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/row/rowComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/row/rowComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/row/rowComponentConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/row/rowComponentConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/row/rowElementsVisibility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/row/rowElementsVisibility.ts -------------------------------------------------------------------------------- /src/visualComponent/table/row/rowState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/row/rowState.ts -------------------------------------------------------------------------------- /src/visualComponent/table/scrollable/scrollableConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/scrollable/scrollableConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/table/tableBaseComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/tableBaseComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/tableComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/tableComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/table/tableState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/table/tableState.ts -------------------------------------------------------------------------------- /src/visualComponent/visualComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/visualComponent.ts -------------------------------------------------------------------------------- /src/visualComponent/visualComponentConstructorOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/visualComponentConstructorOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/visualComponentRenderOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/visualComponentRenderOptions.ts -------------------------------------------------------------------------------- /src/visualComponent/visualComponentRenderOptionsBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/visualComponentRenderOptionsBase.ts -------------------------------------------------------------------------------- /src/visualComponent/visualComponentStateBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/src/visualComponent/visualComponentStateBase.ts -------------------------------------------------------------------------------- /styles/styles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/styles/styles.less -------------------------------------------------------------------------------- /test.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/test.webpack.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PowerBI-visuals-PowerKPIMatrix/HEAD/tslint.json --------------------------------------------------------------------------------