├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── check-extended.yaml │ ├── check.yaml │ ├── gate.yaml │ └── post.yaml ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .sonar.settings ├── .storybook ├── addons.js ├── config.js ├── middleware.js ├── preview-head.html ├── test-storybook-canvas.config.js ├── test-storybook.config.js └── webpack.config.js ├── .stylelintrc ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── NOTICES.txt ├── README.md ├── __mocks__ ├── fixtures.ts └── styleMock.ts ├── docker └── .config ├── examples ├── .babelrc ├── .eslintrc ├── server │ ├── .nvmrc │ ├── package.json │ ├── src │ │ ├── endpoints │ │ │ ├── assignProject.js │ │ │ ├── proxy.js │ │ │ ├── redirectToHttps.js │ │ │ ├── register.js │ │ │ ├── staticFiles.js │ │ │ └── tests │ │ │ │ ├── assignProject.test.js │ │ │ │ ├── redirectToHttps.test.js │ │ │ │ └── register.test.js │ │ └── index.js │ └── yarn.lock ├── src │ ├── components │ │ ├── AreaChartExample.jsx │ │ ├── ArithmeticMeasureChangeExample.jsx │ │ ├── ArithmeticMeasureDrillingExample.jsx │ │ ├── ArithmeticMeasureMultiplicationExample.jsx │ │ ├── ArithmeticMeasureRatioExample.jsx │ │ ├── ArithmeticMeasureSumExample.jsx │ │ ├── AttributeElementsExample.jsx │ │ ├── AttributeFilterComponentExample.jsx │ │ ├── AttributeFilterExample.jsx │ │ ├── AttributeSortingExample.jsx │ │ ├── BarChartDynamicExample.jsx │ │ ├── BarChartExample.jsx │ │ ├── BarChartExportExample.jsx │ │ ├── BarChartOnDrillExample.jsx │ │ ├── BubbleChartExample.jsx │ │ ├── BucketExecutorExample.jsx │ │ ├── BulletChartDrillExample.jsx │ │ ├── BulletChartExample.jsx │ │ ├── BulletExportExample.jsx │ │ ├── ColumnChartExample.jsx │ │ ├── ComboChartExample.jsx │ │ ├── ConfigurationBulletChartExample.jsx │ │ ├── ConfigurationColumnChartExample.jsx │ │ ├── CustomLegendExample.jsx │ │ ├── CustomVisualizationExample.jsx │ │ ├── CustomisedLoadingExample.jsx │ │ ├── DateFilterComponentExample.jsx │ │ ├── DateFilterWithColumnChartExample.jsx │ │ ├── DatePickerExample.jsx │ │ ├── DonutChartExample.jsx │ │ ├── DrillWithExternalDataExample.jsx │ │ ├── DualAxisColumnChartExample.jsx │ │ ├── DynamicMeasuresExample.jsx │ │ ├── DynamicSortingExample.jsx │ │ ├── ErrorExample.jsx │ │ ├── ExecuteAttributeValuesExample.jsx │ │ ├── ExecuteExample.jsx │ │ ├── GeoPushpinChartClusteringExample.jsx │ │ ├── GeoPushpinChartConfigurationColorMappingExample.jsx │ │ ├── GeoPushpinChartConfigurationExample.jsx │ │ ├── GeoPushpinChartConfigurationLegendExample.jsx │ │ ├── GeoPushpinChartConfigurationPointsGroupNearbyExample.jsx │ │ ├── GeoPushpinChartConfigurationPointsSizeExample.jsx │ │ ├── GeoPushpinChartConfigurationViewportExample.jsx │ │ ├── GeoPushpinChartDrillExample.jsx │ │ ├── GeoPushpinChartWithCategoryLegendExample.jsx │ │ ├── GeoPushpinChartWithColorLegendExample.jsx │ │ ├── GlobalFiltersComponents │ │ │ ├── EmployeeCard.jsx │ │ │ └── KpiMetricBox.jsx │ │ ├── GlobalFiltersExample.jsx │ │ ├── HeadlineExample.jsx │ │ ├── HeadlineExportExample.jsx │ │ ├── HeadlineOnDrillExample.jsx │ │ ├── HeatmapExample.jsx │ │ ├── KpiExample.jsx │ │ ├── LineChartExample.jsx │ │ ├── LoadingExample.jsx │ │ ├── MeasureSortingExample.jsx │ │ ├── MeasureValueFilterAndAttributeFilter.jsx │ │ ├── MeasureValueFilterAndDateFilter.jsx │ │ ├── MeasureValueFilterAndDateFilterAndAttributeFilter.jsx │ │ ├── MeasureValueFilterChartConfiguration.jsx │ │ ├── MeasureValueFilterComponentExample.jsx │ │ ├── MeasureValueFilterComponentPercentageExample.jsx │ │ ├── MeasureValueFilterComponentRatioExample.jsx │ │ ├── MeasureValueFilterDropdownComponentExample.jsx │ │ ├── MeasureValueFilterExample.jsx │ │ ├── MeasureValueFilterFormattedInPercentageExample.jsx │ │ ├── MeasureValueFilterShownInPercentageExample.jsx │ │ ├── MeasureValueFilterStackedToHundredPercentExample.jsx │ │ ├── MeasureValueFilterTreatNullAsZero.jsx │ │ ├── MeasureValueFilterTreatNullAsZeroComponentExample.jsx │ │ ├── MonthPickerExample.jsx │ │ ├── MultipleDomainsExample.jsx │ │ ├── NativeTotalAndMeasureValueFilterTest.jsx │ │ ├── ParentFilterExample.jsx │ │ ├── PieChartColorMappingExample.jsx │ │ ├── PieChartExample.jsx │ │ ├── PivotTableColumnsGrowToFitExample.jsx │ │ ├── PivotTableDrillExample.jsx │ │ ├── PivotTableDynamicExample.jsx │ │ ├── PivotTableExample.jsx │ │ ├── PivotTableExportExample.jsx │ │ ├── PivotTableManualResizingExample.jsx │ │ ├── PivotTableRowGroupingExample.jsx │ │ ├── PivotTableSizingComplexExample.jsx │ │ ├── PivotTableSizingExample.jsx │ │ ├── PivotTableSizingWithAttributeFilterExample.jsx │ │ ├── PivotTableSizingWithMultipleMeasuresExample.jsx │ │ ├── PivotTableSizingWithSubtotalsExample.jsx │ │ ├── PivotTableSortingAggregationExample.jsx │ │ ├── PivotTableSortingExample.jsx │ │ ├── PivotTableSubtotalsExample.jsx │ │ ├── PivotTableTotalsExample.jsx │ │ ├── PreviousPeriodHeadlineExample.jsx │ │ ├── ResponsiveExample.jsx │ │ ├── SamePeriodBarChartExample.jsx │ │ ├── SamePeriodBulletChartExample.jsx │ │ ├── SamePeriodColumnChartExample.jsx │ │ ├── SamePeriodComboChartExample.jsx │ │ ├── SamePeriodHeadLineExample.jsx │ │ ├── SamePeriodLineChartExample.jsx │ │ ├── SamePeriodPivotTableExample.jsx │ │ ├── ScatterPlotExample.jsx │ │ ├── StackedAreaChartExample.jsx │ │ ├── TableExample.jsx │ │ ├── TableExportExample.jsx │ │ ├── TreemapExample.jsx │ │ ├── VisualizationAreaByIdentifierExample.jsx │ │ ├── VisualizationAreaByUriExample.jsx │ │ ├── VisualizationBarByIdentifierExample.jsx │ │ ├── VisualizationBarByUriExample.jsx │ │ ├── VisualizationBubbleByIdentifierExample.jsx │ │ ├── VisualizationBubbleByUriExample.jsx │ │ ├── VisualizationBulletByIdentifierExample.jsx │ │ ├── VisualizationBulletByUriExample.jsx │ │ ├── VisualizationColumnChartByIdentifierExample.jsx │ │ ├── VisualizationColumnChartByUriExample.jsx │ │ ├── VisualizationColumnChartExportExample.jsx │ │ ├── VisualizationComboByIdentifierExample.jsx │ │ ├── VisualizationComboByUriExample.jsx │ │ ├── VisualizationDonutByIdentifierExample.jsx │ │ ├── VisualizationDonutByUriExample.jsx │ │ ├── VisualizationDualAxisBarChartExample.jsx │ │ ├── VisualizationGeoPushpinChartByIdentifierExample.jsx │ │ ├── VisualizationGeoPushpinChartByUriExample.jsx │ │ ├── VisualizationHeadlineByIdentifierExample.jsx │ │ ├── VisualizationHeadlineByUriExample.jsx │ │ ├── VisualizationHeatmapByIdentifierExample.jsx │ │ ├── VisualizationHeatmapByUriExample.jsx │ │ ├── VisualizationLineByIdentifierExample.jsx │ │ ├── VisualizationLineByUriExample.jsx │ │ ├── VisualizationMeasureValueFilterByIdentifierExample.jsx │ │ ├── VisualizationMeasureValueFilterTreatNullAsZeroByIdentifierExample.jsx │ │ ├── VisualizationOnDrillExample.jsx │ │ ├── VisualizationPieByIdentifierExample.jsx │ │ ├── VisualizationPieByUriExample.jsx │ │ ├── VisualizationScatterByIdentifierExample.jsx │ │ ├── VisualizationScatterByUriExample.jsx │ │ ├── VisualizationTableByIdentifierExample.jsx │ │ ├── VisualizationTableByUriExample.jsx │ │ ├── VisualizationTreemapByIdentifierExample.jsx │ │ ├── VisualizationTreemapByUriExample.jsx │ │ ├── XirrExample.jsx │ │ └── utils │ │ │ ├── CustomError.jsx │ │ │ ├── CustomLoading.jsx │ │ │ ├── ElementWithParam.jsx │ │ │ ├── ExampleWithExport.jsx │ │ │ ├── ExampleWithOnDrill.jsx │ │ │ ├── ExampleWithSource.jsx │ │ │ ├── Header.jsx │ │ │ ├── Layout.jsx │ │ │ ├── Login.jsx │ │ │ ├── LoginOverlay.jsx │ │ │ ├── Menu.jsx │ │ │ ├── Registration.jsx │ │ │ ├── SidebarItem.jsx │ │ │ └── SourceDropdown.jsx │ ├── index.jsx │ ├── routes │ │ ├── AboutThisProject.jsx │ │ ├── AdvancedUseCases.jsx │ │ ├── AggregationTest.jsx │ │ ├── ArithmeticMeasure.jsx │ │ ├── AttributeFilter.jsx │ │ ├── BasicComponents.jsx │ │ ├── BucketExecutor.jsx │ │ ├── BulletChart.jsx │ │ ├── ChartConfiguration.jsx │ │ ├── ComboChart.jsx │ │ ├── CustomLegend.jsx │ │ ├── DateFilter.jsx │ │ ├── DatePicker.jsx │ │ ├── DrillWithExternalData.jsx │ │ ├── DynamicMeasures.jsx │ │ ├── Execute.jsx │ │ ├── Export.jsx │ │ ├── GeoPushpinChartDemo.jsx │ │ ├── GlobalFilters.jsx │ │ ├── LoadingAndError.jsx │ │ ├── Login.jsx │ │ ├── MeasureValueFilter.jsx │ │ ├── MeasureValueFilterComponent.jsx │ │ ├── MultipleDomains.jsx │ │ ├── OnDrillHandling.jsx │ │ ├── ParentFilter.jsx │ │ ├── PivotTable.jsx │ │ ├── PivotTableDemo.jsx │ │ ├── PivotTableDrilling.jsx │ │ ├── PivotTableDynamic.jsx │ │ ├── PivotTableSizing.jsx │ │ ├── Registration.jsx │ │ ├── ResponsiveChart.jsx │ │ ├── Route404.jsx │ │ ├── Sorting.jsx │ │ ├── TimeOverTimeComparison.jsx │ │ ├── VisualizationByIdentifier.jsx │ │ ├── VisualizationByUri.jsx │ │ ├── WithSubRoutes.jsx │ │ ├── Xirr.jsx │ │ └── _list.js │ ├── static │ │ ├── favicon.ico │ │ ├── gooddata.svg │ │ └── logicalDataModel.png │ └── utils │ │ ├── colors.js │ │ ├── fixtures.js │ │ ├── fixturesGeoChart.js │ │ ├── fixturesTablePOC.js │ │ └── helpers.js ├── test │ ├── ArithmericMeasures_test.js │ ├── AttributeFilter_test.js │ ├── BasicComponents_test.js │ ├── ChartConfiguration_test.js │ ├── ComboChart_test.js │ ├── DateFilter_test.js │ ├── DatePicker_test.js │ ├── DrillWithExternalData_test.js │ ├── DynamicMeasures_test.js │ ├── Execute_test.js │ ├── Export_test.js │ ├── GeoPushpinChart_test.js │ ├── GlobalFilter_test.js │ ├── MeasureValueFilterComponent_test.js │ ├── MeasureValueFilter_test.js │ ├── OnDrillHandlingFixtures.js │ ├── OnDrillHandling_test.js │ ├── ParentFilter_test.js │ ├── PivotTableDemo_test.js │ ├── PivotTableDrillExample_test.js │ ├── PivotTableDynamicFixtures.js │ ├── PivotTableDynamic_test.js │ ├── PivotTableManualResizing_test.js │ ├── PivotTableMenu_test.js │ ├── PivotTableSizingReset_test.js │ ├── PivotTableSizing_test.js │ ├── PivotTable_test.js │ ├── ResponsiveChart_test.js │ ├── Sorting_test.js │ ├── TimeOverTimeComparison_test.js │ ├── VisualizationByIdentifier_test.js │ ├── VisualizationByUri_test.js │ └── utils │ │ ├── chartHelpers.js │ │ ├── config.js │ │ ├── constants.js │ │ ├── dateFilter.js │ │ ├── exportUtils.js │ │ ├── helpers.js │ │ └── pivotTableHelpers.js └── webpack.config.js ├── gdc-ci.yaml ├── gdc_fossa.yaml ├── jest.ci.js ├── jest.config.js ├── jest.setup.ts ├── jestSvgStub.js ├── mock-schema.js ├── package.json ├── scripts ├── build-examples.sh ├── build.sh ├── run-examples.sh └── run-testcafe.sh ├── sonar-project.properties ├── specs └── gooddata-react-components-web.spec ├── src ├── components │ ├── AreaChart.tsx │ ├── BarChart.tsx │ ├── BubbleChart.tsx │ ├── BulletChart.tsx │ ├── ColumnChart.tsx │ ├── ComboChart.tsx │ ├── DonutChart.tsx │ ├── FunnelChart.tsx │ ├── GeoPushpinChart.tsx │ ├── Headline.tsx │ ├── Heatmap.tsx │ ├── LineChart.tsx │ ├── PieChart.tsx │ ├── PivotTable.tsx │ ├── ScatterPlot.tsx │ ├── Table.tsx │ ├── Treemap.tsx │ ├── Xirr.tsx │ ├── afm │ │ ├── AreaChart.ts │ │ ├── BarChart.tsx │ │ ├── BubbleChart.tsx │ │ ├── BulletChart.tsx │ │ ├── ColumnChart.tsx │ │ ├── ComboChart.tsx │ │ ├── DataSourceProvider.tsx │ │ ├── DonutChart.tsx │ │ ├── FunnelChart.tsx │ │ ├── Headline.ts │ │ ├── Heatmap.tsx │ │ ├── LineChart.tsx │ │ ├── PieChart.tsx │ │ ├── ScatterPlot.tsx │ │ ├── Table.tsx │ │ ├── Treemap.tsx │ │ ├── Xirr.ts │ │ ├── afmComponents.ts │ │ └── tests │ │ │ ├── AreaChart.spec.tsx │ │ │ ├── BarChart.spec.tsx │ │ │ ├── ColumnChart.spec.tsx │ │ │ ├── ComboChart.spec.tsx │ │ │ ├── DataSourceProvider.spec.tsx │ │ │ ├── DonutChart.spec.tsx │ │ │ ├── FunnelChart.spec.tsx │ │ │ ├── Headline.spec.tsx │ │ │ ├── Heatmap.spec.tsx │ │ │ ├── LineChart.spec.tsx │ │ │ ├── PieChart.spec.tsx │ │ │ ├── ScatterPlot.spec.tsx │ │ │ ├── Table.spec.tsx │ │ │ ├── Treemap.spec.tsx │ │ │ ├── Xirr.spec.tsx │ │ │ └── utils │ │ │ ├── DummyExecuteAfmAdapter.tsx │ │ │ ├── DummyHeadlineExecuteAfmAdapter.tsx │ │ │ ├── DummyXirrExecuteAfmAdapter.tsx │ │ │ ├── dummyFixture.ts │ │ │ ├── dummyHeadlineFixture.ts │ │ │ └── dummyXirrFixture.ts │ ├── core │ │ ├── AreaChart.tsx │ │ ├── BarChart.tsx │ │ ├── BubbleChart.tsx │ │ ├── BulletChart.tsx │ │ ├── ColumnChart.tsx │ │ ├── ComboChart.tsx │ │ ├── DonutChart.tsx │ │ ├── FunnelChart.tsx │ │ ├── GeoChart.tsx │ │ ├── Headline.tsx │ │ ├── Heatmap.tsx │ │ ├── LineChart.tsx │ │ ├── PieChart.tsx │ │ ├── PivotTable.tsx │ │ ├── PureTable.tsx │ │ ├── ScatterPlot.tsx │ │ ├── SortableTable.tsx │ │ ├── Table.tsx │ │ ├── Treemap.tsx │ │ ├── Xirr.tsx │ │ ├── base │ │ │ ├── BaseChart.tsx │ │ │ ├── BaseVisualization.tsx │ │ │ ├── GeoValidatorHOC.tsx │ │ │ ├── IntlWrapper.tsx │ │ │ ├── TranslationsProvider.tsx │ │ │ ├── VisualizationLoadingHOC.tsx │ │ │ ├── test │ │ │ │ ├── BaseChart.spec.tsx │ │ │ │ ├── BaseVisualization.spec.tsx │ │ │ │ ├── GeoValidatorHOC.spec.tsx │ │ │ │ ├── TranslationsProvider.spec.tsx │ │ │ │ └── VisualizationLoadingHOC.spec.tsx │ │ │ └── utils │ │ │ │ ├── fixEmptyHeaderItems.ts │ │ │ │ └── test │ │ │ │ └── fixEmptyHeaderItems.spec.ts │ │ ├── geoChart │ │ │ ├── GeoChartInner.tsx │ │ │ ├── GeoChartLegendRenderer.tsx │ │ │ ├── GeoChartOptionsWrapper.tsx │ │ │ ├── GeoChartRenderer.tsx │ │ │ ├── geoChartColor.ts │ │ │ ├── geoChartDataLayers.ts │ │ │ ├── geoChartDataSource.ts │ │ │ ├── geoChartTooltip.ts │ │ │ ├── legends │ │ │ │ ├── PushpinCategoryLegend.tsx │ │ │ │ ├── PushpinSizeLegend.tsx │ │ │ │ └── test │ │ │ │ │ ├── PushpinCategoryLegend.spec.tsx │ │ │ │ │ └── PushpinSizeLegend.spec.tsx │ │ │ └── tests │ │ │ │ ├── GeoChartInner.spec.tsx │ │ │ │ ├── GeoChartLegendRenderer.spec.tsx │ │ │ │ ├── GeoChartOptionsWrapper.spec.tsx │ │ │ │ ├── GeoChartRenderer.spec.tsx │ │ │ │ ├── geoChartColor.spec.ts │ │ │ │ ├── geoChartDataLayers.spec.ts │ │ │ │ ├── geoChartDataSource.spec.ts │ │ │ │ ├── geoChartTooltip.spec.ts │ │ │ │ └── mock.ts │ │ ├── pivotTable │ │ │ ├── AggregationsMenu.tsx │ │ │ ├── AggregationsSubMenu.tsx │ │ │ ├── ColumnGroupHeader.tsx │ │ │ ├── ColumnHeader.tsx │ │ │ ├── GroupingProvider.ts │ │ │ ├── HeaderCell.tsx │ │ │ ├── ResizedColumnsStore.ts │ │ │ ├── RowLoadingElement.tsx │ │ │ ├── agColumnWrapper.ts │ │ │ ├── agGridApiWrapper.ts │ │ │ ├── agGridColumnSizing.ts │ │ │ ├── agGridConst.ts │ │ │ ├── agGridData.ts │ │ │ ├── agGridDataSource.ts │ │ │ ├── agGridDataSourceUtils.ts │ │ │ ├── agGridDrilling.ts │ │ │ ├── agGridHeaders.ts │ │ │ ├── agGridSorting.ts │ │ │ ├── agGridTypes.ts │ │ │ ├── agGridUtils.ts │ │ │ ├── aggregationsMenuHelper.ts │ │ │ ├── stickyRowHandler.ts │ │ │ └── tests │ │ │ │ ├── AggregationsMenu.spec.tsx │ │ │ │ ├── AggregationsSubMenu.spec.tsx │ │ │ │ ├── ColumnHeader.spec.tsx │ │ │ │ ├── GroupingProvider.mock.ts │ │ │ │ ├── GroupingProvider.spec.ts │ │ │ │ ├── HeaderCell.spec.tsx │ │ │ │ ├── ResizedColumnsStore.spec.ts │ │ │ │ ├── RowLoadingElement.spec.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ ├── agGridDataSource.spec.ts.snap │ │ │ │ └── agGridHeaders.spec.ts.snap │ │ │ │ ├── agColumnWrapper.spec.ts │ │ │ │ ├── agGridApiWrapper.spec.tsx │ │ │ │ ├── agGridColumnSizing.spec.ts │ │ │ │ ├── agGridData.spec.ts │ │ │ │ ├── agGridDataSource.spec.ts │ │ │ │ ├── agGridDataSourceUtils.spec.ts │ │ │ │ ├── agGridDrilling.spec.ts │ │ │ │ ├── agGridHeaders.spec.ts │ │ │ │ ├── agGridMock.ts │ │ │ │ ├── agGridSorting.spec.ts │ │ │ │ ├── agGridUtils.spec.ts │ │ │ │ ├── aggregationsMenuHelper.spec.ts │ │ │ │ └── stickyRowHandler.spec.ts │ │ └── tests │ │ │ ├── AreaChart.spec.tsx │ │ │ ├── BarChart.spec.tsx │ │ │ ├── BubbleChart.spec.tsx │ │ │ ├── ColumnChart.spec.tsx │ │ │ ├── ComboChart.spec.tsx │ │ │ ├── DonutChart.spec.tsx │ │ │ ├── FunnelChart.spec.tsx │ │ │ ├── GeoChart.spec.tsx │ │ │ ├── Headline.spec.tsx │ │ │ ├── Heatmap.spec.tsx │ │ │ ├── LineChart.spec.tsx │ │ │ ├── PieChart.spec.tsx │ │ │ ├── PivotTable.spec.tsx │ │ │ ├── PureTable.spec.tsx │ │ │ ├── ScatterPlot.spec.tsx │ │ │ ├── SortableTable.spec.tsx │ │ │ ├── Table.spec.tsx │ │ │ └── Treemap.spec.tsx │ ├── filters │ │ ├── AttributeFilter │ │ │ ├── AttributeDropdown.tsx │ │ │ ├── AttributeElements.tsx │ │ │ ├── AttributeFilter.tsx │ │ │ ├── AttributeFilterItem.tsx │ │ │ ├── AttributeLoader.tsx │ │ │ ├── model.ts │ │ │ └── tests │ │ │ │ ├── AttributeDropdown.spec.tsx │ │ │ │ ├── AttributeElements.spec.tsx │ │ │ │ ├── AttributeFilter.spec.tsx │ │ │ │ ├── AttributeFilterItem.spec.tsx │ │ │ │ ├── AttributeLoader.spec.tsx │ │ │ │ └── utils.ts │ │ ├── DateFilter │ │ │ ├── AbsoluteDateFilterForm │ │ │ │ ├── AbsoluteDateFilterForm.tsx │ │ │ │ └── conversions.ts │ │ │ ├── DateFilter.tsx │ │ │ ├── DateFilterBody │ │ │ │ ├── AbsolutePresetFilterItems.tsx │ │ │ │ ├── AllTimeFilterItem.tsx │ │ │ │ ├── DateFilterBody.scss │ │ │ │ ├── DateFilterBody.tsx │ │ │ │ ├── DateFilterBodyButton.tsx │ │ │ │ ├── DateFilterHeader.scss │ │ │ │ ├── DateFilterHeader.tsx │ │ │ │ ├── EditModeMessage.tsx │ │ │ │ ├── RelativePresetFilterItems.tsx │ │ │ │ └── tests │ │ │ │ │ └── DateFilterBody.spec.tsx │ │ │ ├── DateFilterButton │ │ │ │ ├── DateFilterButton.scss │ │ │ │ └── DateFilterButton.tsx │ │ │ ├── DateFilterButtonLocalized │ │ │ │ └── DateFilterButtonLocalized.tsx │ │ │ ├── DateFilterCore.tsx │ │ │ ├── DateFilterFormWrapper │ │ │ │ ├── DateFilterFormWrapper.scss │ │ │ │ ├── DateFilterFormWrapper.tsx │ │ │ │ └── tests │ │ │ │ │ ├── DateFilterFormWrapper.spec.tsx │ │ │ │ │ └── __snapshots__ │ │ │ │ │ └── DateFilterFormWrapper.spec.tsx.snap │ │ │ ├── DateFilterTextLocalized │ │ │ │ └── DateFilterTextLocalized.tsx │ │ │ ├── DateRangePicker │ │ │ │ ├── DateRangePicker.scss │ │ │ │ ├── DateRangePicker.tsx │ │ │ │ ├── DateRangePickerError.tsx │ │ │ │ ├── DateRangePickerInputField.tsx │ │ │ │ ├── DateRangePickerInputFieldBody.tsx │ │ │ │ ├── tests │ │ │ │ │ ├── DateRangePicker.spec.tsx │ │ │ │ │ └── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── DynamicSelect │ │ │ │ ├── DynamicSelect.scss │ │ │ │ ├── DynamicSelect.tsx │ │ │ │ ├── tests │ │ │ │ │ └── DynamicSelect.spec.tsx │ │ │ │ └── utils.ts │ │ │ ├── ExcludeCurrentPeriodToggle │ │ │ │ ├── ExcludeCurrentPeriodToggle.scss │ │ │ │ ├── ExcludeCurrentPeriodToggle.tsx │ │ │ │ ├── ExcludeCurrentPeriodToggleLabel.tsx │ │ │ │ └── tests │ │ │ │ │ ├── ExcludeCurrentPeriodToggle.spec.tsx │ │ │ │ │ └── ExcludeCurrentPeriodToggleLocalized.spec.tsx │ │ │ ├── ListHeading │ │ │ │ └── ListHeading.tsx │ │ │ ├── ListItem │ │ │ │ ├── ListItem.scss │ │ │ │ └── ListItem.tsx │ │ │ ├── ListItemTooltip │ │ │ │ ├── ListItemTooltip.scss │ │ │ │ └── ListItemTooltip.tsx │ │ │ ├── NumericInput │ │ │ │ ├── ArrowButton.tsx │ │ │ │ ├── NumericInput.scss │ │ │ │ ├── NumericInput.tsx │ │ │ │ ├── tests │ │ │ │ │ ├── ArrowButton.spec.tsx │ │ │ │ │ └── NumericInput.spec.tsx │ │ │ │ └── utils.ts │ │ │ ├── RelativeDateFilterForm │ │ │ │ ├── GranularityTabs.scss │ │ │ │ ├── GranularityTabs.tsx │ │ │ │ ├── RelativeDateFilterForm.tsx │ │ │ │ └── tests │ │ │ │ │ ├── GranularityTabs.spec.tsx │ │ │ │ │ └── RelativeDateFilterForm.spec.tsx │ │ │ ├── RelativePresetTitleTranslated │ │ │ │ └── RelativePresetTitleTranslated.tsx │ │ │ ├── RelativeRangePicker │ │ │ │ ├── RelativeRangePicker.scss │ │ │ │ └── RelativeRangePicker.tsx │ │ │ ├── Select │ │ │ │ ├── Select.scss │ │ │ │ ├── Select.tsx │ │ │ │ ├── SelectButton.tsx │ │ │ │ ├── SelectHeading.tsx │ │ │ │ ├── SelectMenu.scss │ │ │ │ ├── SelectMenu.tsx │ │ │ │ ├── SelectOption.scss │ │ │ │ ├── SelectOption.tsx │ │ │ │ ├── SelectSeparator.tsx │ │ │ │ ├── VirtualizedSelectMenu.tsx │ │ │ │ ├── tests │ │ │ │ │ └── Select.spec.tsx │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── Separator │ │ │ │ ├── Separator.scss │ │ │ │ └── Separator.tsx │ │ │ ├── Tabs │ │ │ │ └── Tabs.tsx │ │ │ ├── VisibleScrollbar │ │ │ │ ├── VisibleScrollbar.scss │ │ │ │ └── VisibleScrollbar.tsx │ │ │ ├── constants │ │ │ │ ├── config.tsx │ │ │ │ └── i18n.ts │ │ │ ├── index.ts │ │ │ ├── tests │ │ │ │ ├── DateFilter.spec.tsx │ │ │ │ ├── extendedDateFilters_helpers.tsx │ │ │ │ └── utils.ts │ │ │ ├── utils │ │ │ │ ├── AFMConversions.ts │ │ │ │ ├── DateConversions.ts │ │ │ │ ├── FormattingUtils.ts │ │ │ │ ├── OptionUtils.ts │ │ │ │ ├── PeriodExlusion.ts │ │ │ │ ├── Translations │ │ │ │ │ ├── DateFilterTitle.ts │ │ │ │ │ ├── Translators.ts │ │ │ │ │ └── tests │ │ │ │ │ │ ├── DateFilterTitle.spec.ts │ │ │ │ │ │ └── fixtures.ts │ │ │ │ └── tests │ │ │ │ │ ├── AFMConversions.spec.ts │ │ │ │ │ ├── DateConversions.spec.ts │ │ │ │ │ ├── FormattingUtils.spec.ts │ │ │ │ │ ├── OptionUtils.spec.ts │ │ │ │ │ └── PeriodExlusion.spec.ts │ │ │ └── validation │ │ │ │ ├── OptionValidation.ts │ │ │ │ └── tests │ │ │ │ └── OptionValidation.spec.ts │ │ └── MeasureValueFilter │ │ │ ├── ComparisonInput.tsx │ │ │ ├── Dropdown.tsx │ │ │ ├── DropdownBody.tsx │ │ │ ├── MeasureValueFilter.tsx │ │ │ ├── MeasureValueFilterButton.tsx │ │ │ ├── MeasureValueFilterDropdown.tsx │ │ │ ├── OperatorDropdown.tsx │ │ │ ├── OperatorDropdownBody.tsx │ │ │ ├── OperatorDropdownItem.tsx │ │ │ ├── RangeInput.tsx │ │ │ ├── TreatNullValuesAsZeroCheckbox.tsx │ │ │ ├── separators.ts │ │ │ ├── tests │ │ │ ├── MeasureValueFilter.spec.tsx │ │ │ ├── MeasureValueFilterDropdown.spec.tsx │ │ │ └── fragments │ │ │ │ └── MeasureValueFilterDropdown.tsx │ │ │ └── typings.ts │ ├── measureNumberFormat │ │ ├── MeasureNumberFormat.tsx │ │ ├── customFormatDialog │ │ │ ├── CustomFormatDialog.tsx │ │ │ ├── DocumentationLink.tsx │ │ │ ├── FormatInput.tsx │ │ │ ├── formatTemplatesDropdown │ │ │ │ ├── DropdownItem.tsx │ │ │ │ ├── DropdownToggleButton.tsx │ │ │ │ └── FormatTemplatesDropdown.tsx │ │ │ ├── previewSection │ │ │ │ ├── ExtendedPreview.tsx │ │ │ │ └── Preview.tsx │ │ │ └── shared │ │ │ │ ├── FormattedPreview.tsx │ │ │ │ ├── PreviewRows.tsx │ │ │ │ └── tests │ │ │ │ └── FormattedPreview.spec.tsx │ │ ├── presetsDropdown │ │ │ ├── PresetsDropdown.tsx │ │ │ └── PresetsDropdownItem.tsx │ │ ├── tests │ │ │ ├── MeasureNumberFormat.spec.tsx │ │ │ └── fragments │ │ │ │ └── MeasureNumberFormat.tsx │ │ └── typings.ts │ ├── menu │ │ ├── ControlledMenu.tsx │ │ ├── Menu.tsx │ │ ├── MenuSharedTypes.ts │ │ ├── MenuState.tsx │ │ ├── SubMenu.tsx │ │ ├── menuOpener │ │ │ ├── MenuOpenedByClick.tsx │ │ │ ├── MenuOpenedByHover.tsx │ │ │ ├── MenuOpenedBySharedProps.ts │ │ │ └── MenuOpener.tsx │ │ ├── positioning │ │ │ ├── MenuPosition.tsx │ │ │ ├── PositionedMenuContent.tsx │ │ │ ├── positioningCalculations.ts │ │ │ └── tests │ │ │ │ └── positioningCalculations.spec.ts │ │ ├── tests │ │ │ ├── Menu.spec.tsx │ │ │ ├── MenuState.spec.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Menu.spec.tsx.snap │ │ └── utils │ │ │ ├── OutsideClickHandler.tsx │ │ │ ├── RenderChildrenInPortal.tsx │ │ │ └── tests │ │ │ └── RenderChildrenInPortal.spec.tsx │ ├── simple │ │ ├── ErrorComponent.tsx │ │ ├── Kpi.tsx │ │ ├── LoadingComponent.tsx │ │ ├── SyntaxHighlightingInput.tsx │ │ └── tests │ │ │ ├── Kpi.spec.tsx │ │ │ └── SyntaxHighlightingInput.spec.tsx │ ├── tests │ │ ├── AreaChart.spec.tsx │ │ ├── BarChart.spec.tsx │ │ ├── BubbleChart.spec.tsx │ │ ├── ColumnChart.spec.tsx │ │ ├── ComboChart.spec.tsx │ │ ├── DonutChart.spec.tsx │ │ ├── FunnelChart.spec.tsx │ │ ├── GeoPushpinChart.spec.tsx │ │ ├── Headline.spec.tsx │ │ ├── Heatmap.spec.tsx │ │ ├── LineChart.spec.tsx │ │ ├── PieChart.spec.tsx │ │ ├── PivotTable.spec.tsx │ │ ├── ScatterPlot.spec.tsx │ │ ├── Table.spec.tsx │ │ ├── Treemap.spec.tsx │ │ ├── fixtures │ │ │ └── buckets.ts │ │ └── mocks.tsx │ ├── uri │ │ ├── Visualization.tsx │ │ ├── experimentalDataSource.ts │ │ └── tests │ │ │ └── Visualization.spec.tsx │ ├── visualizations │ │ ├── Visualization.tsx │ │ ├── chart │ │ │ ├── Chart.tsx │ │ │ ├── ChartTransformation.tsx │ │ │ ├── HighChartsRenderer.tsx │ │ │ ├── chartOptions │ │ │ │ ├── bulletChartOptions.ts │ │ │ │ ├── comboChartOptions.ts │ │ │ │ ├── extendedStackingChartOptions.ts │ │ │ │ └── test │ │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── bulletChartOptions.spec.ts.snap │ │ │ │ │ ├── bulletChartOptions.spec.ts │ │ │ │ │ ├── comboChartOptions.spec.ts │ │ │ │ │ └── extendedStackingChartOptions.spec.ts │ │ │ ├── chartOptionsBuilder.ts │ │ │ ├── colorFactory.ts │ │ │ ├── colorStrategies │ │ │ │ ├── attribute.ts │ │ │ │ ├── bubbleChart.ts │ │ │ │ ├── bulletChart.ts │ │ │ │ ├── geoChart.ts │ │ │ │ ├── heatmap.ts │ │ │ │ ├── measure.ts │ │ │ │ ├── pointsChart.ts │ │ │ │ ├── scatterPlot.ts │ │ │ │ ├── test │ │ │ │ │ ├── attribute.spec.ts │ │ │ │ │ ├── bubble.spec.ts │ │ │ │ │ ├── bulletChart.spec.ts │ │ │ │ │ ├── geoChart.spec.ts │ │ │ │ │ ├── heatmap.spec.ts │ │ │ │ │ ├── helpers.ts │ │ │ │ │ ├── measure.spec.ts │ │ │ │ │ ├── scatterPlot.spec.ts │ │ │ │ │ ├── treemap.spec.ts │ │ │ │ │ └── utils.spec.ts │ │ │ │ ├── treemap.ts │ │ │ │ └── utils.ts │ │ │ ├── colorStrategy.ts │ │ │ ├── constants.ts │ │ │ ├── events │ │ │ │ ├── setupDrilldownToParentAttribute.ts │ │ │ │ └── test │ │ │ │ │ └── setupDrilldownToParentAttribute.spec.ts │ │ │ ├── highChartsCreators.ts │ │ │ ├── highcharts │ │ │ │ ├── areaConfiguration.ts │ │ │ │ ├── barConfiguration.ts │ │ │ │ ├── bubbleConfiguration.ts │ │ │ │ ├── bulletConfiguration.ts │ │ │ │ ├── chartPlugins.ts │ │ │ │ ├── columnConfiguration.ts │ │ │ │ ├── comboConfiguration.ts │ │ │ │ ├── commonConfiguration.ts │ │ │ │ ├── customConfiguration.ts │ │ │ │ ├── dataLabelsHelpers.ts │ │ │ │ ├── donutConfiguration.ts │ │ │ │ ├── funnelConfiguration.ts │ │ │ │ ├── getAxisLabelConfigurationForDualBarChart.ts │ │ │ │ ├── getAxisNameConfiguration.ts │ │ │ │ ├── getChartAlignmentConfiguration.ts │ │ │ │ ├── getOptionalStackingConfiguration.ts │ │ │ │ ├── getZeroAlignConfiguration.ts │ │ │ │ ├── heatmapConfiguration.ts │ │ │ │ ├── helpers.ts │ │ │ │ ├── highchartsEntryPoint.ts │ │ │ │ ├── lineConfiguration.ts │ │ │ │ ├── pieConfiguration.ts │ │ │ │ ├── plugins │ │ │ │ │ ├── adjustTickAmount.ts │ │ │ │ │ ├── autohideLabels │ │ │ │ │ │ ├── autohideBarLabels.ts │ │ │ │ │ │ ├── autohideColumnLabels.ts │ │ │ │ │ │ ├── autohideLabels.ts │ │ │ │ │ │ ├── autohideLabelsOverlappingItsShape.ts │ │ │ │ │ │ ├── autohidePieLabels.ts │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── autohideColumnLabels.spec.ts │ │ │ │ │ │ │ └── autohidePieLabels.spec.ts │ │ │ │ │ ├── dataLabelsColors.ts │ │ │ │ │ ├── group-categories-wrapper.ts │ │ │ │ │ ├── linearTickPositions.ts │ │ │ │ │ ├── pointHalo.ts │ │ │ │ │ ├── renderBubbles.ts │ │ │ │ │ └── test │ │ │ │ │ │ ├── adjustTickAmount.spec.ts │ │ │ │ │ │ └── dataLabelsColors.spec.ts │ │ │ │ ├── scatterConfiguration.ts │ │ │ │ ├── test │ │ │ │ │ ├── comboConfiguration.spec.ts │ │ │ │ │ ├── customConfiguration.spec.ts │ │ │ │ │ ├── dataLabelsHelpers.spec.ts │ │ │ │ │ ├── getAxisLabelConfigurationForDualBarChart.spec.ts │ │ │ │ │ ├── getAxisNameConfiguration.spec.ts │ │ │ │ │ ├── getChartAlignmentConfiguration.spec.ts │ │ │ │ │ ├── getOptionalStackingConfiguration.spec.ts │ │ │ │ │ ├── getZeroAlignConfiguration.spec.ts │ │ │ │ │ ├── heatmapConfiguration.spec.ts │ │ │ │ │ └── helpers.spec.ts │ │ │ │ └── treemapConfiguration.ts │ │ │ ├── legend │ │ │ │ ├── ColorLegend.tsx │ │ │ │ ├── FluidLegend.tsx │ │ │ │ ├── HeatmapLegend.tsx │ │ │ │ ├── Legend.tsx │ │ │ │ ├── LegendAxisIndicator.tsx │ │ │ │ ├── LegendItem.tsx │ │ │ │ ├── LegendList.tsx │ │ │ │ ├── Paging.tsx │ │ │ │ ├── PositionTypes.ts │ │ │ │ ├── StaticLegend.tsx │ │ │ │ ├── helpers.ts │ │ │ │ ├── legendBuilder.ts │ │ │ │ └── test │ │ │ │ │ ├── ColorLegend.spec.tsx │ │ │ │ │ ├── FluidLegend.spec.tsx │ │ │ │ │ ├── HeatmapLegend.spec.tsx │ │ │ │ │ ├── Legend.spec.tsx │ │ │ │ │ ├── LegendAxisIndicator.spec.tsx │ │ │ │ │ ├── LegendItem.spec.tsx │ │ │ │ │ ├── LegendList.spec.tsx │ │ │ │ │ ├── Paging.spec.tsx │ │ │ │ │ ├── StaticLegend.spec.tsx │ │ │ │ │ ├── helpers.spec.ts │ │ │ │ │ └── legendBuilder.spec.ts │ │ │ ├── test │ │ │ │ ├── Chart.spec.tsx │ │ │ │ ├── ChartTransformation.spec.tsx │ │ │ │ ├── HighChartsRenderer.spec.tsx │ │ │ │ ├── chartOptionsBuilder.spec.ts │ │ │ │ ├── helper.ts │ │ │ │ ├── highChartsCreators.spec.ts │ │ │ │ └── tooltip.spec.ts │ │ │ └── tooltip.ts │ │ ├── headline │ │ │ ├── Headline.tsx │ │ │ ├── HeadlineTransformation.tsx │ │ │ ├── XirrTransformation.tsx │ │ │ ├── test │ │ │ │ ├── Headline.spec.tsx │ │ │ │ ├── HeadlineTransformation.spec.tsx │ │ │ │ ├── XirrTransformation.spec.tsx │ │ │ │ └── fixtures │ │ │ │ │ ├── XirrTransformation.fixtures.ts │ │ │ │ │ ├── drill_event_data.ts │ │ │ │ │ ├── one_measure.ts │ │ │ │ │ └── two_measures.ts │ │ │ ├── types.ts │ │ │ └── utils │ │ │ │ ├── HeadlineDataItemUtils.ts │ │ │ │ ├── HeadlineTransformationUtils.ts │ │ │ │ ├── XirrTransformationUtils.ts │ │ │ │ ├── calculateXirr.ts │ │ │ │ └── test │ │ │ │ ├── HeadlineDataItemUtils.spec.ts │ │ │ │ ├── HeadlineTransformationUtils.spec.ts │ │ │ │ ├── XirrTransformationUtils.spec.ts │ │ │ │ └── calculateXirr.spec.ts │ │ ├── mock-translations │ │ │ └── en.ts │ │ ├── proptypes │ │ │ └── execution.ts │ │ ├── styles │ │ │ ├── _variables.scss │ │ │ ├── bulletChart.scss │ │ │ ├── charts.scss │ │ │ ├── headline.scss │ │ │ ├── legend.scss │ │ │ ├── table.scss │ │ │ ├── tooltip.scss │ │ │ └── variables.ts │ │ ├── table │ │ │ ├── ResponsiveTable.tsx │ │ │ ├── Table.tsx │ │ │ ├── TableControls.tsx │ │ │ ├── TableSortBubbleContent.tsx │ │ │ ├── TableTransformation.tsx │ │ │ ├── TableVisualization.tsx │ │ │ ├── constants │ │ │ │ ├── align.ts │ │ │ │ └── layout.ts │ │ │ ├── fixtures │ │ │ │ ├── 1attribute.ts │ │ │ │ ├── 1attribute2measures.ts │ │ │ │ ├── 1measure.ts │ │ │ │ ├── 2attributes.ts │ │ │ │ ├── 2attributes1measure.ts │ │ │ │ ├── 2attributes3measures.ts │ │ │ │ ├── 2measures.ts │ │ │ │ ├── arithmericMeasures.ts │ │ │ │ └── periodOverPeriod.ts │ │ │ ├── test │ │ │ │ ├── ResponsiveTable.spec.tsx │ │ │ │ ├── TableSortBubbleContent.spec.tsx │ │ │ │ ├── TableTransformation.spec.tsx │ │ │ │ └── TableVisualization.spec.tsx │ │ │ ├── totals │ │ │ │ ├── AddTotal.tsx │ │ │ │ ├── AddTotalButton.tsx │ │ │ │ ├── DropdownItem.tsx │ │ │ │ ├── RemoveRows.tsx │ │ │ │ ├── TotalCell.tsx │ │ │ │ ├── test │ │ │ │ │ ├── AddTotal.spec.tsx │ │ │ │ │ ├── AddTotalButton.spec.tsx │ │ │ │ │ ├── DropdownItem.spec.tsx │ │ │ │ │ ├── RemoveRows.spec.tsx │ │ │ │ │ ├── TotalCell.spec.tsx │ │ │ │ │ └── utils.spec.tsx │ │ │ │ └── utils.ts │ │ │ └── utils │ │ │ │ ├── column.ts │ │ │ │ ├── dataTransformation.ts │ │ │ │ ├── fixtures │ │ │ │ └── totalsWithData.ts │ │ │ │ ├── layout.ts │ │ │ │ ├── row.ts │ │ │ │ ├── sort.ts │ │ │ │ └── test │ │ │ │ ├── column.spec.ts │ │ │ │ ├── dataTransformation.spec.ts │ │ │ │ ├── layout.spec.ts │ │ │ │ ├── row.spec.ts │ │ │ │ └── sort.spec.ts │ │ ├── typings │ │ │ ├── chart.ts │ │ │ └── legend.ts │ │ └── utils │ │ │ ├── color.ts │ │ │ ├── common.ts │ │ │ ├── drilldownEventing.ts │ │ │ ├── drilldownEventingLegacy.ts │ │ │ ├── intlUtils.tsx │ │ │ └── test │ │ │ ├── color.spec.ts │ │ │ ├── common.spec.tsx │ │ │ ├── drilldownEventing.fixtures.ts │ │ │ ├── drilldownEventing.spec.tsx │ │ │ └── drilldownEventingLegacy.spec.ts │ └── withJsxExport.tsx ├── constants │ ├── MediaQueries.ts │ ├── Platform.ts │ ├── alignments.ts │ ├── axisLabel.ts │ ├── bucketNames.ts │ ├── dimensions.ts │ ├── errorStates.ts │ ├── geoChart.ts │ ├── label.ts │ ├── legend.ts │ ├── localization.ts │ ├── measureValueFilterOperators.ts │ ├── series.ts │ ├── sort.ts │ └── visualizationTypes.ts ├── errors │ └── RuntimeError.ts ├── execution │ ├── BucketExecutor.tsx │ ├── Execute.tsx │ ├── fixtures │ │ └── ExecuteAfm.fixtures.ts │ └── tests │ │ ├── BucketExecutor.spec.tsx │ │ └── Execute.spec.tsx ├── factory │ ├── ArithmeticMeasureTitleFactory.ts │ ├── DerivedMeasureTitleSuffixFactory.ts │ ├── HeaderPredicateFactory.ts │ └── tests │ │ ├── ArithmeticMeasureTitleFactory.spec.ts │ │ ├── DerivedMeasureTitleSuffixFactory.spec.ts │ │ ├── HeaderPredicateFactory.mock.ts │ │ └── HeaderPredicateFactory.spec.ts ├── helpers │ ├── CatalogHelper.ts │ ├── IntlStore.ts │ ├── MdObjectHelper.ts │ ├── TotalsConverter.ts │ ├── afmHelper.ts │ ├── async.ts │ ├── conversion.ts │ ├── dimensions.ts │ ├── domUtils.ts │ ├── dualAxis.ts │ ├── errorHandlers.ts │ ├── executionResultHelper.ts │ ├── featureFlags.ts │ ├── geoChart │ │ ├── colorStrategy.ts │ │ ├── common.ts │ │ ├── data.ts │ │ ├── executionResultHelper.ts │ │ └── viewport.ts │ ├── headerPredicate.ts │ ├── mappingHeader.ts │ ├── mdObjBucketHelper.ts │ ├── measureTitleHelper.ts │ ├── measureValueFilterOperator.ts │ ├── model │ │ ├── attributes.ts │ │ ├── filters.ts │ │ ├── index.ts │ │ ├── measureValueFilters.ts │ │ ├── measures.ts │ │ ├── objectToModelNotation.ts │ │ ├── sortBy.ts │ │ ├── tests │ │ │ ├── __snapshots__ │ │ │ │ └── measureValueFilters.spec.ts.snap │ │ │ ├── attributes.spec.ts │ │ │ ├── filters.spec.ts │ │ │ ├── invalid_type_guard_mocks.ts │ │ │ ├── measureValueFilters.spec.ts │ │ │ ├── measures.spec.ts │ │ │ ├── objectToModelNotation.spec.ts │ │ │ ├── sortBy.spec.ts │ │ │ ├── utils.spec.ts │ │ │ └── widthItems.spec.ts │ │ ├── utils.ts │ │ └── widthItems.ts │ ├── optionalStacking │ │ ├── areaChart.ts │ │ ├── common.ts │ │ └── test │ │ │ ├── common.spec.ts │ │ │ └── optionalStacking.spec.ts │ ├── resultSpec.ts │ ├── sdkCache.ts │ ├── sorts.ts │ ├── stackByAttribute.ts │ ├── tableCell.ts │ ├── tests │ │ ├── CatalogHelper.spec.ts │ │ ├── IntlStore.spec.ts │ │ ├── MdObjectHelper.spec.ts │ │ ├── __snapshots__ │ │ │ └── errorHandlers.spec.ts.snap │ │ ├── afmHelper.spec.ts │ │ ├── conversion.spec.ts │ │ ├── dimensions.spec.ts │ │ ├── dualAxis.spec.ts │ │ ├── errorHandlers.spec.ts │ │ ├── executionResultHelper.spec.ts │ │ ├── featureFlags.spec.ts │ │ ├── geoChart │ │ │ ├── colorStrategy.spec.ts │ │ │ ├── common.spec.ts │ │ │ ├── data.spec.ts │ │ │ ├── executionResultHelper.spec.ts │ │ │ ├── fixtures.ts │ │ │ └── viewport.spec.ts │ │ ├── headerPredicate.spec.ts │ │ ├── mappingHeader.spec.ts │ │ ├── mdObjBucketHelper.ts │ │ ├── measureTitleHelper.spec.ts │ │ ├── measureValueFilterOperator.spec.ts │ │ ├── resultSpec.spec.ts │ │ ├── sdkCache.spec.ts │ │ ├── sorts.spec.ts │ │ ├── stackByAttribute.spec.ts │ │ ├── tableCell.spec.ts │ │ ├── utils.spec.ts │ │ └── visualizationType.spec.ts │ ├── utils.ts │ └── visualizationType.ts ├── index.ts ├── interfaces │ ├── Config.ts │ ├── CoreComponents.ts │ ├── DataSource.ts │ ├── DrillEvents.ts │ ├── Events.ts │ ├── ExtendedDateFilters.ts │ ├── GeoChart.ts │ ├── HeaderPredicate.ts │ ├── Headlines.ts │ ├── HighchartsExtend.ts │ ├── MappingHeader.ts │ ├── MeasureTitle.ts │ ├── MeasureValueFilter.ts │ ├── OverTimeComparison.ts │ ├── PivotTable.ts │ ├── PushData.ts │ ├── Table.ts │ ├── Totals.ts │ ├── Utils.ts │ └── tests │ │ ├── MappingHeader.spec.ts │ │ └── MeasureValueFilter.spec.ts ├── internal │ ├── assets │ │ ├── area │ │ │ ├── bucket-title-measures.svg │ │ │ ├── bucket-title-stack.svg │ │ │ └── bucket-title-view.svg │ │ ├── axis │ │ │ ├── name-position-bottom.svg │ │ │ ├── name-position-center.svg │ │ │ ├── name-position-left.svg │ │ │ ├── name-position-middle.svg │ │ │ ├── name-position-right.svg │ │ │ └── name-position-top.svg │ │ ├── bar │ │ │ ├── bucket-title-measures.svg │ │ │ ├── bucket-title-stack.svg │ │ │ └── bucket-title-view.svg │ │ ├── bubble │ │ │ ├── bucket-title-measures-x.svg │ │ │ ├── bucket-title-measures-y.svg │ │ │ ├── bucket-title-size.svg │ │ │ └── bucket-title-view-by.svg │ │ ├── bullet │ │ │ ├── bucket-title-comparative.svg │ │ │ ├── bucket-title-primary.svg │ │ │ ├── bucket-title-target.svg │ │ │ └── bucket-title-view-by.svg │ │ ├── column │ │ │ ├── bucket-title-measures.svg │ │ │ ├── bucket-title-stack.svg │ │ │ └── bucket-title-view.svg │ │ ├── combo │ │ │ ├── bucket-title-measures-area.svg │ │ │ ├── bucket-title-measures-column.svg │ │ │ ├── bucket-title-measures-line.svg │ │ │ ├── bucket-title-secondary-measures.svg │ │ │ ├── bucket-title-view-column-area.svg │ │ │ ├── bucket-title-view-column-line.svg │ │ │ ├── bucket-title-view-line-area.svg │ │ │ └── bucket-title-view-line-line.svg │ │ ├── donut │ │ │ ├── bucket-title-measures.svg │ │ │ └── bucket-title-view.svg │ │ ├── funnel │ │ │ ├── bucket-title-measures.svg │ │ │ └── bucket-title-view.svg │ │ ├── geoPushpin │ │ │ ├── bucket-title-color-icon.svg │ │ │ ├── bucket-title-location-icon.svg │ │ │ ├── bucket-title-segment-icon.svg │ │ │ └── bucket-title-size-icon.svg │ │ ├── headline │ │ │ ├── bucket-title-measures.svg │ │ │ └── bucket-title-secondary-measures.svg │ │ ├── heatmap │ │ │ ├── bucket-title-measures.svg │ │ │ ├── bucket-title-stack.svg │ │ │ └── bucket-title-view.svg │ │ ├── legend │ │ │ ├── legend-bottom.svg │ │ │ ├── legend-left.svg │ │ │ ├── legend-right.svg │ │ │ └── legend-top.svg │ │ ├── line │ │ │ ├── bucket-title-measures.svg │ │ │ ├── bucket-title-segment.svg │ │ │ └── bucket-title-trend.svg │ │ ├── pie │ │ │ ├── bucket-title-measures.svg │ │ │ └── bucket-title-view.svg │ │ ├── scatter │ │ │ ├── bucket-title-attribute.svg │ │ │ ├── bucket-title-measures-x.svg │ │ │ └── bucket-title-measures-y.svg │ │ ├── table │ │ │ ├── bucket-title-attributes.svg │ │ │ ├── bucket-title-columns.svg │ │ │ ├── bucket-title-measures.svg │ │ │ └── bucket-title-rows.svg │ │ └── treemap │ │ │ ├── bucket-title-measures.svg │ │ │ ├── bucket-title-segment.svg │ │ │ └── bucket-title-view.svg │ ├── components │ │ ├── BaseVisualization.tsx │ │ ├── DisabledBubbleMessage.tsx │ │ ├── configurationControls │ │ │ ├── CheckboxControl.tsx │ │ │ ├── ConfigSection.tsx │ │ │ ├── ConfigSubsection.tsx │ │ │ ├── DataLabelsControl.tsx │ │ │ ├── DropdownControl.tsx │ │ │ ├── InputControl.tsx │ │ │ ├── MinMaxControl.tsx │ │ │ ├── PushpinSizeControl.tsx │ │ │ ├── PushpinViewportControl.tsx │ │ │ ├── UnsupportedProperties.tsx │ │ │ ├── axis │ │ │ │ ├── LabelRotationControl.tsx │ │ │ │ ├── LabelSubsection.tsx │ │ │ │ ├── NamePositionControl.tsx │ │ │ │ ├── NameSubsection.tsx │ │ │ │ └── tests │ │ │ │ │ ├── LabelRotationControl.spec.tsx │ │ │ │ │ ├── LabelSubsection.spec.tsx │ │ │ │ │ ├── NamePositionControl.spec.tsx │ │ │ │ │ └── NameSubsection.spec.tsx │ │ │ ├── colors │ │ │ │ ├── ColorsSection.tsx │ │ │ │ ├── colorDropdown │ │ │ │ │ ├── ColorDropdown.tsx │ │ │ │ │ ├── ColorOverlay.tsx │ │ │ │ │ ├── ColorPalette.tsx │ │ │ │ │ ├── ColorPaletteItem.tsx │ │ │ │ │ ├── CustomColorButton.tsx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── ColorDropdown.spec.tsx │ │ │ │ │ │ ├── ColorOverlay.spec.tsx │ │ │ │ │ │ ├── ColorPalette.spec.tsx │ │ │ │ │ │ └── ColorPaletteItem.spec.tsx │ │ │ │ ├── coloredItemsList │ │ │ │ │ ├── ColoredItem.tsx │ │ │ │ │ ├── ColoredItemContent.tsx │ │ │ │ │ ├── ColoredItemsList.tsx │ │ │ │ │ └── tests │ │ │ │ │ │ ├── ColoredItemContent.spec.tsx │ │ │ │ │ │ ├── ColoredItemsList.spec.tsx │ │ │ │ │ │ └── mock.ts │ │ │ │ └── tests │ │ │ │ │ └── ColorsSection.spec.tsx │ │ │ ├── legend │ │ │ │ ├── LegendPositionControl.tsx │ │ │ │ ├── LegendSection.tsx │ │ │ │ └── tests │ │ │ │ │ └── LegendSection.spec.tsx │ │ │ └── tests │ │ │ │ ├── CheckboxControl.spec.tsx │ │ │ │ ├── ConfigSection.spec.tsx │ │ │ │ ├── ConfigSubsection.spec.tsx │ │ │ │ ├── DataLabelsControl.spec.tsx │ │ │ │ ├── DropdownControl.spec.tsx │ │ │ │ ├── InputControl.spec.tsx │ │ │ │ ├── PushpinSizeControl.spec.tsx │ │ │ │ └── PushpinViewportControl.spec.tsx │ │ ├── configurationPanels │ │ │ ├── BarChartConfigurationPanel.tsx │ │ │ ├── BaseChartConfigurationPanel.tsx │ │ │ ├── BubbleChartConfigurationPanel.tsx │ │ │ ├── BulletChartConfigurationPanel.tsx │ │ │ ├── ConfigurationPanelContent.tsx │ │ │ ├── GeoPushpinConfigurationPanel.tsx │ │ │ ├── HeatMapConfigurationPanel.tsx │ │ │ ├── LineChartBasedConfigurationPanel.tsx │ │ │ ├── PieChartConfigurationPanel.tsx │ │ │ ├── ScatterPlotConfigurationPanel.tsx │ │ │ ├── TreeMapConfigurationPanel.tsx │ │ │ ├── UnsupportedConfigurationPanel.tsx │ │ │ └── tests │ │ │ │ ├── BaseChartConfigurationPanel.spec.tsx │ │ │ │ ├── BubbleChartConfigurationPanel.spec.tsx │ │ │ │ ├── BulletChartConfigurationPanel.spec.tsx │ │ │ │ ├── ConfigurationPanelContent.spec.tsx │ │ │ │ ├── GeoPushpinConfigurationPanel.spec.tsx │ │ │ │ └── ScatterPlotConfigurationPanel.spec.tsx │ │ ├── pluggableVisualizations │ │ │ ├── AbstractPluggableVisualization.tsx │ │ │ ├── PluggableColumnBarCharts.tsx │ │ │ ├── areaChart │ │ │ │ ├── PluggableAreaChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableAreaChart.spec.tsx │ │ │ ├── barChart │ │ │ │ ├── PluggableBarChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableBarChart.spec.tsx │ │ │ ├── baseChart │ │ │ │ ├── PluggableBaseChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableBaseChart.spec.tsx │ │ │ ├── baseHeadline │ │ │ │ └── PluggableBaseHeadline.tsx │ │ │ ├── bubbleChart │ │ │ │ ├── PluggableBubbleChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableBubbleChart.spec.tsx │ │ │ ├── bulletChart │ │ │ │ ├── PluggableBulletChart.tsx │ │ │ │ ├── bucketHelper.ts │ │ │ │ └── tests │ │ │ │ │ ├── PluggableBulletChart.spec.tsx │ │ │ │ │ └── bucketHelper.spec.ts │ │ │ ├── columnChart │ │ │ │ ├── PluggableColumnChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableColumnChart.spec.tsx │ │ │ ├── comboChart │ │ │ │ ├── PluggableComboChart.tsx │ │ │ │ ├── PluggableComboChartDeprecated.tsx │ │ │ │ └── tests │ │ │ │ │ ├── PluggableComboChart.spec.tsx │ │ │ │ │ └── PluggableComboChartDeprecated.spec.tsx │ │ │ ├── donutChart │ │ │ │ ├── PluggableDonutChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableDonutChart.spec.tsx │ │ │ ├── funnelChart │ │ │ │ ├── PluggableFunnelChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableFunnelChart.spec.tsx │ │ │ ├── geoChart │ │ │ │ ├── PluggableGeoPushpinChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableGeoPushpinChart.spec.tsx │ │ │ ├── headline │ │ │ │ ├── PluggableHeadline.tsx │ │ │ │ ├── headlineBucketHelper.ts │ │ │ │ └── tests │ │ │ │ │ ├── PluggableHeadline.spec.tsx │ │ │ │ │ └── headlineBucketHelper.spec.ts │ │ │ ├── heatMap │ │ │ │ ├── PluggableHeatmap.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableHeatmap.spec.tsx │ │ │ ├── lineChart │ │ │ │ ├── PluggableLineChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableLineChart.spec.tsx │ │ │ ├── pieChart │ │ │ │ ├── PluggablePieChart.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggablePieChart.spec.tsx │ │ │ ├── pivotTable │ │ │ │ ├── PluggablePivotTable.tsx │ │ │ │ ├── sortItemsHelpers.ts │ │ │ │ ├── tests │ │ │ │ │ ├── PluggablePivotTable.spec.tsx │ │ │ │ │ ├── sortItemsHelpers.spec.ts │ │ │ │ │ ├── sortItemsMock.ts │ │ │ │ │ ├── testHelper.ts │ │ │ │ │ ├── widthItemsHelpers.spec.ts │ │ │ │ │ └── widthItemsMock.ts │ │ │ │ └── widthItemsHelpers.ts │ │ │ ├── scatterPlot │ │ │ │ ├── PluggableScatterPlot.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableScatterPlot.spec.tsx │ │ │ ├── tests │ │ │ │ ├── AbstractPluggableVisualization.spec.tsx │ │ │ │ └── PluggableColumnBarCharts.spec.tsx │ │ │ ├── treeMap │ │ │ │ ├── PluggableTreemap.tsx │ │ │ │ └── tests │ │ │ │ │ └── PluggableTreemap.spec.tsx │ │ │ └── xirr │ │ │ │ ├── PluggableXirr.tsx │ │ │ │ ├── tests │ │ │ │ ├── PluggableXirr.spec.tsx │ │ │ │ └── xirrBucketHelper.spec.ts │ │ │ │ └── xirrBucketHelper.ts │ │ └── tests │ │ │ ├── BaseVisualization.spec.tsx │ │ │ └── DisabledBubbleMessage.spec.tsx │ ├── constants │ │ ├── axis.ts │ │ ├── bubble.ts │ │ ├── bucket.ts │ │ ├── dropdowns.ts │ │ ├── properties.ts │ │ ├── sort.ts │ │ ├── supportedProperties.ts │ │ └── uiConfig.ts │ ├── index.ts │ ├── interfaces │ │ ├── AxisType.ts │ │ ├── Colors.ts │ │ ├── ConfigurationPanel.ts │ │ ├── MinMaxControl.ts │ │ ├── Visualization.ts │ │ └── tests │ │ │ └── Visualization.spec.ts │ ├── mocks │ │ ├── executionObjectMocks.ts │ │ ├── referencePointMocks.ts │ │ ├── testColorHelper.tsx │ │ ├── testMocks.ts │ │ ├── uiConfigMocks.ts │ │ └── visualizationObjectMocks.ts │ ├── translations │ │ ├── de-DE.json │ │ ├── en-US.json │ │ ├── es-ES.json │ │ ├── fr-FR.json │ │ ├── ja-JP.json │ │ ├── nl-NL.json │ │ ├── pt-BR.json │ │ ├── pt-PT.json │ │ └── zh-Hans.json │ └── utils │ │ ├── bucketConfig.ts │ │ ├── bucketHelper.ts │ │ ├── bucketRules.ts │ │ ├── colors.ts │ │ ├── controlsHelper.ts │ │ ├── defaultHandlers.ts │ │ ├── domHelper.ts │ │ ├── drillablePredicates.ts │ │ ├── executionObjectHelper.ts │ │ ├── internalIntlProvider.tsx │ │ ├── mdObjectHelper.ts │ │ ├── propertiesHelper.ts │ │ ├── sort.ts │ │ ├── tests │ │ ├── bucketConfig.spec.ts │ │ ├── bucketHelper.spec.ts │ │ ├── bucketRules.spec.ts │ │ ├── colors.spec.ts │ │ ├── controlsHelper.spec.ts │ │ ├── domHelper.spec.ts │ │ ├── drillablePredicates.spec.ts │ │ ├── executionObjectHelper.spec.ts │ │ ├── mdObjectHelper.spec.ts │ │ ├── propertiesHelper.spec.ts │ │ └── sort.spec.ts │ │ ├── translations.ts │ │ ├── uiConfigHelpers │ │ ├── areaChartUiConfigHelper.ts │ │ ├── baseChartUiConfigHelper.ts │ │ ├── bubbleChartUiConfigHelper.ts │ │ ├── bulletChartUiConfigHelper.ts │ │ ├── columnBarChartUiConfigHelper.ts │ │ ├── comboChartUiConfigHelper.ts │ │ ├── comboChartUiConfigHelperDeprecated.ts │ │ ├── donutChartUiConfigHelper.ts │ │ ├── funnelChartUiConfigHelper.ts │ │ ├── geoPushpinChartUiConfigHelper.ts │ │ ├── headlineUiConfigHelper.ts │ │ ├── heatmapUiConfigHelper.ts │ │ ├── lineChartUiConfigHelper.ts │ │ ├── pieChartUiConfigHelper.ts │ │ ├── pivotTableUiConfigHelper.ts │ │ ├── scatterPlotUiConfigHelper.ts │ │ ├── tableUiConfigHelper.ts │ │ ├── tests │ │ │ ├── __snapshots__ │ │ │ │ └── bulletChartUiConfigHelper.spec.ts.snap │ │ │ ├── bulletChartUiConfigHelper.spec.ts │ │ │ ├── comboChartUiConfigHelper.spec.ts │ │ │ ├── comboChartUiConfigHelperDeprecated.spec.ts │ │ │ ├── headlineUiConfigHelper.spec.ts │ │ │ └── xirrUiConfigHelper.spec.ts │ │ ├── treemapUiConfigHelper.ts │ │ └── xirrUiConfigHelper.ts │ │ └── visualizationsHelper.ts ├── polyfills.ts ├── proptypes │ ├── Afm.ts │ ├── Chart.ts │ ├── ChartConfig.ts │ ├── DataSource.ts │ ├── DrillableItem.ts │ ├── Events.ts │ ├── Execute.ts │ ├── Filters.ts │ ├── Headline.ts │ ├── Kpi.ts │ ├── Table.ts │ ├── Transformation.ts │ ├── Visualization.ts │ └── index.ts ├── translations │ ├── de-DE.json │ ├── en-US.json │ ├── es-ES.json │ ├── fr-FR.json │ ├── ja-JP.json │ ├── nl-NL.json │ ├── pt-BR.json │ ├── pt-PT.json │ └── zh-Hans.json ├── typings.d.ts └── typings │ ├── positioning.ts │ └── subtract.ts ├── stories ├── __screenshots__ │ ├── storybook_AFM_components_Area_chart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Area_chart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Area_chart_-_stacked_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Area_chart_-_two_measures_one_attribute_stacking_by_default_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Area_chart_-_two_measures_one_attribute_without_stacking_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Area_chart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Area_chart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_custom_axis_label_renaming_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_dual_axes_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_only_top_axis_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_stacked_bar_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_two_measures_one_attribute_PoP_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_two_measures_one_attribute_previous_period_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BarChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BubbleChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BubbleChart_-_three_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BubbleChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BubbleChart_-_without_grid_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BulletChart_-_Primary_and_target_measures_viewed_by_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BulletChart_-_Primary_measure_viewed_by_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_BulletChart_-_Primary_target_and_comparative_measures_viewed_by_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_dual_axes_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_only_top_axis_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ColumnChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ComboChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ComboChart_-_only_bar_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ComboChart_-_only_line_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ComboChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ComboChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ComboChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_error_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_DonutChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_FunnelChart_-_basic_render_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_FunnelChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Headline_-_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Headline_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Headline_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_metric_and_column_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_metric_and_row_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_metric_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_metric_row_column_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_metric_row_column_with_cloumn_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_metric_row_column_with_row_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_with_last_label_of_yaxis_exceed_top_grid_line_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_with_left_out_some_label_of_yaxis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Heatmap_-_with_null_data_point_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_dual_axes_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_only_top_axis_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_LineChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_error_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_PieChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ScatterPlot_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ScatterPlot_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ScatterPlot_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_ScatterPlot_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_arithmetic_measure_with_formatting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_with_table_totals_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Table_-_with_table_totals_editable_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Treemap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_AFM_components_Xirr_-_simple_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_disabled_stack_by_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_disabled_stack_by_config_and_stack_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_enabled_stack_by_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_ignores_stackMeasuresToPercent_setting_with_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_with_one_attributes_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_with_one_attributes_two_measures_and_Stack_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_with_one_attributes_two_measures_and_Stack_to_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_with_one_viewBy_one_stackBy_one_measure_and_Stack_to_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_with_one_viewBy_one_stackBy_one_measure_and_Stack_to_100_and_data_labels_in_percent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_optional_stacking_chart_with_two_attributes_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_stack_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_two_measures_one_attribute_stack_by_default_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_undefined_values_with_stacking_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_undefined_values_without_stacking_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_AreaChart_-_with_min_max_configuration_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_60-degree_rotation_setting_on_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_Data_label_must_update_vertical_align_in_the_middle_when_filtering_one_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_align_axis_labels_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_custom_colors_by_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_custom_colors_by_palette_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_child_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_child_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_items_and_stackBy_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_parent_and_child_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_parent_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_drillable_parent_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_dual_axes_with_two_bottom_measures_one_top_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_dual_axis_and_stack_to_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_dual_axis_and_stack_to_100_with_min_max_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_dual_axis_and_stacking_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_dual_axis_with_two_bottom_measures_one_top_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_force_disable_drilling_on_axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_hidden_X_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_hidden_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_ignore_stackMeasuresToPercent_setting_with_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_ignore_stackMeasures_setting_with_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_one_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_one_measure_one_attribute_with_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_one_measure_two_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_one_measure_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_only_top_axis_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_optional_stacking_chart_ignores_stackMeasures_setting_with_one_measure_on_each_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_optional_stacking_chart_render_stackMeasuresToPercent_setting_with_measure_on_top_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_stack_measures_to_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_stack_to_100_on_top_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_stacked_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_stacked_with_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_stacking_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_stacking_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_two_bottom_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_two_top_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_when_both_color_props_prefer_palette_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_dataLabels_explicitly_hidden_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BarChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_arithmetic_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_basic_render_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_long_name_of_X_and_Y_axes_are_truncated_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_sort_by_attribuet_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_with_only_max_config_on_xaxis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_without_size_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BubbleChart_-_without_y_axis_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_custom_colors_by_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_custom_colors_by_palette_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_drill_on_the_second_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_hidden_X_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_hidden_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_and_comparative_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_and_comparative_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_and_target_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_and_target_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_measure_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_target_and_comparative_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_target_and_comparative_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_primary_target_and_comparative_measures_with_two_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_rotation_setting_on_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_when_both_color_props_prefer_palette_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_BulletChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_dual_axes_with_two_left_measures_one_right_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_dual_axis_with_small_height_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_dual_axis_with_two_left_measures_one_right_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_force_disable_drilling_on_axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_only_right_axis_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_ignores_stackMeasuresToPercent_setting_with_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_ignores_stackMeasuresToPercent_setting_with_one_measure_on_each_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_ignores_stackMeasures_setting_with_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_ignores_stackMeasures_setting_with_one_measure_on_each_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_render_stackMeasuresToPercent_setting_with_measure_on_left_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_60-degree_rotation_setting_on_X_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_Stack_Measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_Stack_Measures_and_enable_data_labels_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_Stack_to_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_Stack_to_100_and_enabling_data_labels_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_Stack_to_100_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_child_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_child_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_child_items_and_stackBy_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_parent_and_child_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_parent_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_parent_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_drillable_parent_items_and_stackBy_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_and_Stack_Measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_and_Stack_Measures_and_data_labels_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_and_Stack_Measures_with_min_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_and_Stack_to_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_and_Stack_to_100_and_enabling_data_labels_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_dual_axis_and_Stack_to_100_with_min_max_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_hide-axis_setting_on_X_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_stacking_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_two_left_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_optional_stacking_chart_with_two_right_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_two_measures_one_attribute_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ColumnChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_column_and_line_on_left_axis_with_Stack_Measures_off_and_Stack_to_100_on_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_column_and_line_on_left_axis_with_Stack_Measures_on_and_Stack_to_100_on_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_discard_stacking_measures_for_line_chart_and_all_measures_on_secondary_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_different_chart_type_and_NO_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_multiple_primary_measures_one_secondary_measure_and_NO_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_one_column_measure_one_area_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_one_column_measure_one_line_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_one_line_measure_one_area_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_same_chart_type_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_same_chart_type_and_NO_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_dual_axis_with_same_chart_type_and_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_empty_primary_measure__discard_stacking_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_empty_primary_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_empty_secondary_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_one_column_measure_one_line_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_should_override_primaryMeasures__secondaryMeasures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_single_axis_with_one_column_measure_one_line_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_stack_primary_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_stack_primary_measures_has_many_data_with_1_VIEW_BY_and_chart_type_is_COLUMN_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_stack_primary_measures_has_many_data_with_1_VIEW_BY_and_chart_type_is_COLUMN_to_percent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_stack_primary_measures_to_percent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_stack_primary_measures_with_different_chart_type_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_stack_primary_measures_with_same_chart_type_and_custom_width_style_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ComboChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_one_measure_with_alias_one_attribute_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_tooltip_for_chart_with_small_width_and_long_names_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_DonutChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_FunnelChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_FunnelChart_-_basic_render_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_FunnelChart_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_FunnelChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_empty_map_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_color_and_segment_alias_shown_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_and_color_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_and_size_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_and_size_color_contains_same_values_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_size_and_color_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_size_and_segmentBy_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_size_color_segmentBy_and_tooltipText_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_size_color_segmentBy_tooltipText_and_location_filter_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_-_with_location_size_color_with_alias_and_segmentBy_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Color_-_with_color_mapping_for_Location_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Color_-_with_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Color_-_with_custom_colors_color_mapping_for_SegmentBy_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_is_disabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_position_is_auto_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_position_is_bottom_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_position_is_left_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_position_is_left_and_height_of_container_is_not_enough_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_position_is_right_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Legend_-_with_legend_position_is_top_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Points_-_with_config_point_size_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Points_-_with_disabled_groupNearbyPoints_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Points_-_with_enabled_groupNearbyPoints_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Viewport_-_with_Asia_viewport_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Viewport_-_with_World_viewport_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_GeoPushpinChart_Config_Viewport_-_with_disabled_interactive_and_zoom_control_button_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Headline_-_one_measure_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Headline_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Headline_-_two_measures_with_PoP_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Headline_-_two_measures_with_previous_period_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Headline_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_Heatmap_with_null_data_point_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_custom_colors_with_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_metric_and_columns_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_metric_and_rows_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_metric_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_metric_row_column_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_metric_row_column_with_cloumn_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_metric_row_column_with_row_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_tooltip_for_chart_with_small_width_and_long_names_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_last_label_of_yaxis_exceed_top_grid_line_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Heatmap_-_with_left_out_some_label_of_yaxis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_KPI_-_KPI_error_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_KPI_-_KPI_measure_1_with_default_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_KPI_-_KPI_measure_1_with_number_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_KPI_-_KPI_measure_9_with_no_data_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_KPI_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_dual_axes_with_two_left_measures_one_right_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_only_right_axis_with_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_some_measure_with__format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_two_measures_one_attribute_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_LineChart_-_with_min_max_configuration_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_measure_and_attribute_with_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_measure_and_attribute_with_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_measure_and_attribute_with_invalid_color_assignment_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_one_measure_with_alias_one_attribute_with_alias_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_tooltip_for_chart_with_small_width_and_long_names_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PieChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_AutoResizing_-_auto_resize_columns_in_the_viewport_-_simple_table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_AutoResizing_-_auto_resize_columns_in_the_viewport_-_with_grand_total_and_subtotal_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_AutoResizing_-_auto_resize_columns_works_with_small_pageSize_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_GrowToFit_-_auto_resize_columns_and_growToFit_viewport_-_simple_table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_GrowToFit_-_auto_resize_columns_growToFit_viewport_not_applied_when_viewport_is_small_after_auto_resize_-_simple_table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_GrowToFit_-_columns_grow_to_fit_viewport_-_simple_table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_GrowToFit_-_columns_grow_to_fit_viewport_-_with_grand_total_and_subtotal_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_GrowToFit_-_columns_grow_to_fit_viewport_not_applied_when_viewport_is_small_-_simple_table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Simple_table_-_autoResizeoff_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Simple_table_-_autoResizeoff_growToFiton_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Simple_table_-_autoResizeon_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Simple_table_-_autoResizeon_growToFiton_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Simple_table_-_manual_size_limits_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Table_with_column_attr_-_autoResizeoff_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Table_with_column_attr_-_autoResizeoff_growToFiton_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Table_with_column_attr_-_autoResizeon_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_Table_with_column_attr_-_autoResizeon_growToFiton_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_With_All_measure_width_definition_-_autoResizeoff_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_With_All_measure_width_definition_-_autoResizeon_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_With_All_measure_width_definition_-_autoResizeon_growToFiton_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_With_weak_measure_width_definition_-_autoResizeoff_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_With_weak_measure_width_definition_-_autoResizeon_growToFitoff_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_ManualResizing_With_weak_measure_width_definition_-_autoResizeon_growToFiton_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_custom_measure_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_custom_number_separators_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_data_grouping_-_do_not_group_rows_in_attribute_columns_when_not_sorted_by_first_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_data_grouping_-_group_rows_in_attribute_columns_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_empty_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_grand_total_and_subtotal_-_two_measures_two_row_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_only_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_subtotals_-_all_labels_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_subtotals_-_two_measures_two_row_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_totals_-_column_and_row_attributes_with_menu_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_totals_-_two_measures_one_column_attributes_one_row_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_totals_-_two_measures_one_row_attribute_maxHeight_100_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_totals_-_two_measures_one_row_attribute_maxHeight_300_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_totals_-_two_measures_two_row_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_two_measures_1_column_attribute_1_row_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_two_measures_1_column_attribute_1_row_attribute_with_sorting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_two_measures_2_column_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_two_measures_2_row_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_PivotTable_PivotTable_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-__format_on_y-axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_basic_render_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_long_name_of_X_and_Y_axes_are_truncated_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_only_secondary_measure_-_tooltip_shows_y-value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_with_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_ScatterPlot_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_custom_measure_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_custom_number_separators_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_empty_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_formatted_arithmetic_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_supplied_height_of_container_of_height_120px_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_supplied_height_of_container_of_height_200px_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_supplied_height_of_container_of_height_400px_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_supplied_height_of_container_of_height_800px_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_table_totals_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_table_totals_and_supplied_height_of_container_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Table_-_with_table_totals_editable_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_all_default_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_custom_colors_and_color_mapping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_custom_colors_and_color_mapping_with_segment_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_custom_colors_by_hexa_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_data_labels_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_measure_View_By_and_Segment_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_measure_and_View_By_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_measures_and_Segment_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_tooltip_for_chart_with_small_width_and_long_names_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Treemap_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Core_components_Xirr_-_simple_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Area_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Area_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Bar_chart_with_view_by_attribute_drillable_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Bar_chart_with_view_by_attribute_drillable_by_attribute_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Bar_chart_with_view_by_attribute_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Column_chart_with_6_pop_measures_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Line_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Line_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Stacked_bar_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Stacked_bar_chart_drillable_by_stack_by_attribute_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Stacked_bar_chart_drillable_by_view_by_attribute_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Drilldown_-_Table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Headline_-_one_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Helper_components_DateFilter_-_full-featured_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Helper_components_Measure_value_filter_-_Measure_value_filter_dropdown_with_warning_message_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Helper_components_Measure_value_filter_-_Measure_value_filter_for_measure_formatted_in_percent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Helper_components_Menu_-_Presentational_menu_components_-_alignment_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Helper_components_Menu_-_aggregation_menus_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Helper_components_Menu_-_presentational_menu_components_-_example_content_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButtonLocalized_-_absoluteForm_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButtonLocalized_-_absolutePreset_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButtonLocalized_-_allTime_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButtonLocalized_-_relativeForm_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButtonLocalized_-_relativePreset_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButton_-_default_state_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterButton_-_opened_state_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilterFormWrapper_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilter_-_full-featured_opened_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateFilter_-_localized_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateRangePicker_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateRangePicker_-_renders_with_Spanish_locale_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateRangePicker_-_renders_with_container_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DateRangePicker_-_renders_with_custom_start_of_week_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DynamicSelect_-_empty_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DynamicSelect_-_initial_open_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DynamicSelect_-_initial_open_with_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_DynamicSelect_-_initial_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_ListHeading_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_ListItem_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_NumericInput_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_Select_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_Separator_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DateFilter_Tabs_-_renders_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Area_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Area_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Bar_chart_with_view_by_attribute_drillable_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Bar_chart_with_view_by_attribute_drillable_by_attribute_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Bar_chart_with_view_by_attribute_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Bubble_chart_with_AM_drilling_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Bubble_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Column_chart_with_6_pop_measures_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Column_chart_with_6_previous_period_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Combo_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Headline_drillable_AM_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Headline_drillable_primary_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Headline_drillable_primary_value_disableDrillUnderline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Headline_drillable_secondary_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Headline_drillable_secondary_value_disableDrillUnderline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Headline_drillable_with_new_onDrill_callback_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Heat_Map_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Heatmap_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Line_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Line_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Pivot_table_drillable_with_new_onDrill_callback_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Pivot_table_with_AM_drillable_predicates_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Pivot_table_with_drillable_predicates__legacy_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Pivot_table_with_subtotal_and_drillable_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Scatter_plot_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Stacked_bar_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Stacked_bar_chart_drillable_by_stack_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Stacked_bar_chart_drillable_by_stack_by_attribute_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Stacked_bar_chart_drillable_by_view_by_attribute_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Table_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Table_legacy_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Table_with_AM_drillable_predicates__legacy_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Table_with_drill_on_master_measure_only_legacy_drillable_items_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_Treemap_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_URI_Visualization_drillable_with_new_onDrill_callback_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Drilldown_-_force_disable_drill_on_axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Chart_should_be_zero_aligned_and_no_columns_is_hidden_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Column_should_not_be_cut_off_on_left_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Column_should_not_be_cut_off_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_and_positive_on_left_axis_negative_and_positive_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_and_positive_on_left_axis_negative_and_positive_on_right_axis_with_min_and_max_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_and_positive_on_left_axis_negative_and_positive_on_right_axis_with_negative_min_and_max_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_and_positive_on_left_axis_negative_and_positive_on_right_axis_with_positive_min_and_max_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_and_positive_on_left_axis_negative_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_and_positive_on_left_axis_negative_on_right_axis_with_min_max_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_data_on_both_axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_data_on_both_axes_with_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_negative_data_on_both_axes_with_min_and_max_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_left_axis_is_invalid_and_right_axis_is_without_middle_0_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_min__max_on_left_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_min__max_on_left_axis_min__max_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_min__max_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_out-of-range_min_max_on_left_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_with_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_with_min_and_max_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_with_min_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_with_shallow_decimal_min_max_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_data_on_both_axes_with_shallow_min_max_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_empty_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_empty_left_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_empty_right_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_shrink_left_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_shrink_right_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_stretch_Y_axes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_with_min_max_settings_in_same_scale_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_with_positive_on_left_axis_negative_on_right_axis_with_min_max_settings_not_in_same_scale_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_DualAxesMinMaxConfig_-_Dataset_without_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HeadlineTransformation_-_Drillable_primary_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HeadlineTransformation_-_Drillable_secondary_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HeadlineTransformation_-_HeadlineTransformation_disableDrillUnderline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HeadlineTransformation_-_HeadlineTransformation_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Above_versus_limit_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Below_versus_limit_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Formatted_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Headline_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Invalid_value_-_custom_formatting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Invalid_value_-_default_formatting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_One_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Truncated_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_-_Two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_Invalid_values_-_Custom_formatting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_Invalid_values_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_One_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_One_measure_disableDrillUnderline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_Two_measures_-_custom_formatting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_Two_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Headline_Drilldown_eventing_-_Two_measures_disableDrillUnderline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Column_chart_with_label_rotation_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Column_chart_with_min_and_max_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Column_chart_without_X_and_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Column_chart_without_X_and_Y_labels_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Column_chart_without_gridline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Dual_axes_chart_both_axes_with__format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Dual_axes_chart_right_Y_axis_with__format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Dual_axes_chart_right_Y_axis_with_text_rotation_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Dual_axes_chart_right_Y_axis_without_label_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Dual_axes_chart_with_data_labels_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartProperties_-_Dual_axes_chart_with_hiding_right_Y_axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Bar_chart_with_viewBy_and_stackBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Bubble_chart_with_three_measures_and_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_ChartTransformation_with_viewBy_and_stackBy_attribute_and_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_18_measures_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_3_metrics_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_6_pop_measures_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_6_previous_period_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_one_measure_and_no_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_viewBy_and_stackBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_viewBy_and_stackBy_attribute_but_only_one_stack_item_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_with_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Column_chart_without_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Combo_chart_with_column_and_area_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Combo_chart_with_one_metric_on_each_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Combo_chart_with_same_chart_type_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Combo_chart_with_single_y-axis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Custom_color_palette_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Donut_chart_view_viewBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Donut_chart_view_viewBy_attribute_with_empty_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Donut_chart_with_measures_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Dual_axes_with_legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Dual_axes_with_mobile_paging_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Dual_axes_with_two_left_measures_one_right_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Dynamic_Chart_test_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Fill_parent_without_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Funnel_chart_view_viewBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Funnel_chart_view_viewBy_attribute_with_empty_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Funnel_chart_with_measures_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Heatmap_with_one_metric_and_two_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Legend_positions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Legend_right_with_paging_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Legend_with_mobile_paging_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Line_chart_with_viewBy_and_stackBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Negative_and_zero_values_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Optional_stacking_and_dual_axis_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Optional_stacking_and_dual_axis_chart_with_stack_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Optional_stacking_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Over_height_bottom_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Pie_chart_view_viewBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Pie_chart_view_viewBy_attribute_with_empty_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Pie_chart_with_measures_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Responsive_width_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Right_axis_with_three_right_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Scatterplot_with_two_measures_and_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Treemap_with_measures_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Treemap_with_viewBy_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_Treemap_with_viewBy_attribute_with_empty_value_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_HighCharts_ChartTransformation_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_1_attribute_3_measures_and_Stack_Measures_disabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_1_attribute_3_measures_and_Stack_Measures_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_1_attribute_3_measures_and_Stack_to_100_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_1_attribute_3_measures_and_areas_are_stacked_by_default_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_viewBy_2_attributes_and_Stack_Measures_disabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_viewBy_2_attributes_and_Stack_Measures_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Chart_with_viewBy_2_attributes_and_areas_are_stacked_by_default_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Area_Chart_-_Charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_60_degree_label_rotation_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_Stack_Measures_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_Stack_Measures_enabled_with_min_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_and_dataLabels_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_with_min_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Charts_with_viewBy_2_attributes_and_some_null_data_points_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Column_chart_with_stack_label_is_disable_with_Stack_to_100_on_and_some_negative_data_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Column_chart_with_top_and_bottom_stack_label_is_enabled_with_Stack_measures_on_and_some_negative_data_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Column_chart_with_viewBy_2_attributes_and_some_null_data_points_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_60_degree_label_rotation_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_Stack_Measures_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_Stack_Measures_enabled_with_min_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_and_dataLabels_enabled_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_and_some_null_data_points_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Column_Bar_DualAxis_Chart_-_Dual_axis_charts_with_viewBy_2_attributes_and_Stack_to_100_enabled_with_min_max_setting_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Compute_Ratio_and_Stack_Measures_To_Percent_-_Chart_with_1_measure_1_viewBy_and_stackMeasuresToPercent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Compute_Ratio_and_Stack_Measures_To_Percent_-_Chart_with_1_measure_2_viewBy_and_stackMeasuresToPercent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Compute_Ratio_and_Stack_Measures_To_Percent_-_Chart_with_1_measures_1_viewBy_and_computeRatio_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Compute_Ratio_and_Stack_Measures_To_Percent_-_Chart_with_1_measures_1_viewBy_computeRatio_and_stackMeasuresToPercent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Compute_Ratio_and_Stack_Measures_To_Percent_-_Chart_with_1_measures_2_viewBy_and_computeRatio_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_OptionalStacking_Compute_Ratio_and_Stack_Measures_To_Percent_-_Chart_with_1_measures_2_viewBy_computeRatio_and_stackMeasuresToPercent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Fill_parent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Fixed_dimensions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Show_more_Show_less_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Sticky_header_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Totals_edit_mode_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Totals_view_mode_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Totals_view_mode_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_TableTransformation_-_Vertical_scroll_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_area_chart_with_disabled_stacking_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_bar_chart_with_3_metrics_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_bar_chart_with_pop_measure_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_bar_chart_with_previous_period_measure_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_bar_chart_with_stack_by_and_view_by_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_bar_chart_with_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_bar_chart_without_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_column_chart_with_3_metrics_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_combo_chart_with_2_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_combo_chart_with_dualAxis_is_false_and_secondary_yaxis_point_to_primary_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_combo_chart_with_dualAxis_is_true_and_do_not_set_param_secondary_yaxis_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_combo_chart_with_dualAxis_is_true_and_secondary_yaxis_point_to_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_combo_chart_with_secondary_yaxis_point_to_primary_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_combo_chart_with_stacking_configuration_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_dual_axes_with_two_left_measures_one_right_measure_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_pie_chart_with_metrics_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_right_axis_with_three_right_measures_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_stacked_area_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_stacked_area_chart_with_negative_values_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_stacked_area_chart_with_single_measure_and_no_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_stacked_area_chart_with_single_metric_and_stack_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_visualization_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Internal_Visualization_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Measure_Number_Format_-_Custom_format_dialog_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Measure_Number_Format_-_Custom_format_dialog_with_highlighted_syntax_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Measure_Number_Format_-_Format_presets_dropdown_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Aggregations_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Fill_parent_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Fixed_dimensions_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Show_more_Show_less_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Sticky_header_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Totals_edit_mode_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Totals_view_mode_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Table_-_Vertical_scroll_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bar_chart_with_1M_2VB_and_1SB_will_be_sorted_by_size_of_the_group_then_size_of_each_member_of_the_group_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bar_chart_with_2M_1VB_and_stackMeasures_is_true_will_be_sorted_by_total_values_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bar_chart_with_2M_2VB_and_stackMeasures_is_true_will_be_sorted_by_size_of_the_group_then_size_of_each_member_of_the_group_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bar_chart_with_2M_and_1VB_will_be_sorted_by_first_measure_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bar_chart_with_2M_and_2VB_will_be_sorted_by_size_of_the_group_then_first_measure_of_each_member_of_the_group_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bullet_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Bullet_chart_with_primary_target_and_comparative_measures_viewed_by_one_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Combo_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Combo_chart_with_custom_chart_type_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Combo_chart_with_identifier_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_GeoPushpinChart_example_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Pivot_table_grouping_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_Table_with_measure_value_filter_in_visualization_object_and_one_additional_in_filter_prop_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_example_-_experimental_execution_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_example_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_example_with_German_format_number_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_example_with_custom_legend_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_PoP_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_X_and_Y_axis_name_aligned_to_left_and_top_respectively_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_applied_filter_and_custom_colors_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_arithmetic_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_disabled_gridline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_eventing_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_overriden_config_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_chart_with_previous_period_measures_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_custom_color_palette_in_style_settings_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_dynamic_visualization_test_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_headline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_headline_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_headline_with_drillableItems_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_headline_with_drillableItems_disableDrillUnderline_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_example_-_experimental_execution_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_example_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_example_with_identifier_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_ignoring_feature_flag_enableTableColumnsGrowToFit_set_to_true_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_resizable_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_German_number_format_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_eventing_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_explicitly_turn_on_growToFit_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_feature_flag_enableTableColumnsGrowToFit_set_to_false_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_feature_flag_enableTableColumnsManualResizing_set_to_true_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_feature_flag_enableTableColumnsManualResizing_set_to_true_and_growToFit_turned_on_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_table_with_feature_flag_resizing_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_xirr_0_screenshot-wrapper_0_desktop.png │ ├── storybook_URI_components_-_xirr_with_drillableItems_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_chart_example_with_custom_legend_0_screenshot-wrapper_0_desktop.1.png │ ├── storybook_Visualization_-_dynamic_visualization_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_area_chart_with_disabled_stacking_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_bar_chart_with_3_metrics_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_bar_chart_with_pop_measure_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_bar_chart_with_stack_by_and_view_by_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_bar_chart_with_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_bar_chart_without_attributes_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_column_chart_with_3_metrics_and_view_by_attribute_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_pie_chart_with_metrics_only_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_stacked_area_chart_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_stacked_area_chart_with_negative_values_0_screenshot-wrapper_0_desktop.png │ ├── storybook_Visualization_-_visualization_stacked_area_chart_with_single_measure_and_no_attributes_0_screenshot-wrapper_0_desktop.png │ └── storybook_Visualization_-_visualization_stacked_area_chart_with_single_metric_and_stack_by_attribute_0_screenshot-wrapper_0_desktop.png ├── afm_components │ ├── AfmComponentAreaChart.tsx │ ├── AfmComponentBarChart.tsx │ ├── AfmComponentBubbleChart.tsx │ ├── AfmComponentBulletChart.tsx │ ├── AfmComponentColumnChart.tsx │ ├── AfmComponentComboChart.tsx │ ├── AfmComponentDonutChart.tsx │ ├── AfmComponentFunnelChart.tsx │ ├── AfmComponentHeadline.tsx │ ├── AfmComponentHeatmap.tsx │ ├── AfmComponentLineChart.tsx │ ├── AfmComponentPieChart.tsx │ ├── AfmComponentScatterPlot.tsx │ ├── AfmComponentTable.tsx │ ├── AfmComponentTreemapChart.tsx │ └── AfmComponentXirr.tsx ├── core_components │ ├── AreaChart.tsx │ ├── BarChart.tsx │ ├── BubbleChart.tsx │ ├── BulletChart.tsx │ ├── ColumnChart.tsx │ ├── ComboChart.tsx │ ├── DonutChart.tsx │ ├── Execute.tsx │ ├── FunnelChart.tsx │ ├── GeoPushpinChart.tsx │ ├── Headline.tsx │ ├── Heatmap.tsx │ ├── Kpi.tsx │ ├── LineChart.tsx │ ├── LoadingAndError.tsx │ ├── PieChart.tsx │ ├── PivotTable │ │ ├── AutoResizing.tsx │ │ ├── GrowToFit.tsx │ │ ├── ManualResizing.tsx │ │ └── PivotTable.tsx │ ├── ScatterPlot.tsx │ ├── Table.tsx │ ├── Treemap.tsx │ └── Xirr.tsx ├── data │ ├── afmComponentProps.ts │ ├── catalog.json │ ├── colors.ts │ ├── componentProps.ts │ ├── configProps.ts │ ├── dualAxis.ts │ ├── geoChart.ts │ ├── geoChart │ │ └── fixtures.js │ ├── geoChartComponentProps.ts │ ├── headlineExecutionFixtures.ts │ └── numberFormat.ts ├── helper_components │ ├── AttributeElements.tsx │ ├── AttributeFilter.tsx │ ├── CatalogHelper.tsx │ ├── DateFilter.tsx │ ├── MeasureValueFilter.tsx │ └── Menu.tsx ├── hoc │ ├── withAxisName.tsx │ └── withChartAlignmentConfigs.tsx ├── internal │ ├── ChartProperties.tsx │ ├── ChartTransformation.tsx │ ├── DateFilter │ │ ├── DateFilter.tsx │ │ ├── DateFilterButton.tsx │ │ ├── DateFilterButtonLocalized.tsx │ │ ├── DateFilterFormWrapper.tsx │ │ ├── DateRangePicker.tsx │ │ ├── DynamicSelect.tsx │ │ ├── ListHeading.tsx │ │ ├── ListItem.tsx │ │ ├── NumericInput.tsx │ │ ├── Select.tsx │ │ ├── Separator.tsx │ │ └── Tabs.tsx │ ├── Drilldown.tsx │ ├── DualAxesChartConfig.tsx │ ├── Export.tsx │ ├── Headline.tsx │ ├── HeadlineTransformation.tsx │ ├── OptionalStacking.tsx │ ├── OptionalStackingArea.tsx │ ├── SupportedDrillableItems.tsx │ ├── TableTransformation.tsx │ ├── Visualization.tsx │ └── pluggable_visualization │ │ └── configurationControls │ │ └── Colors │ │ ├── ColorDropdown.tsx │ │ ├── ColorPalette.tsx │ │ └── ColoredItemsList.tsx ├── measure_number_format │ └── MeasureNumberFormat.tsx ├── mocks.ts ├── test_data │ ├── area_chart_with_3_metrics_and_view_by_attribute_request.js │ ├── area_chart_with_3_metrics_and_view_by_attribute_response.js │ ├── area_chart_with_3_metrics_and_view_by_attribute_result.js │ ├── area_chart_with_measure_view_by_and_stack_by_request.js │ ├── area_chart_with_measure_view_by_and_stack_by_response.js │ ├── area_chart_with_measure_view_by_and_stack_by_result.js │ ├── area_chart_with_negative_values_request.js │ ├── area_chart_with_negative_values_response.js │ ├── area_chart_with_negative_values_result.js │ ├── area_chart_with_single_metric_and_stack_by_attribute_and_filters_request.js │ ├── area_chart_with_single_metric_and_stack_by_attribute_and_filters_response.js │ ├── area_chart_with_single_metric_and_stack_by_attribute_and_filters_result.js │ ├── bar_chart_with_1M_2VB_1SB_request.js │ ├── bar_chart_with_1M_2VB_1SB_response.js │ ├── bar_chart_with_1M_2VB_1SB_result.js │ ├── bar_chart_with_2M_1VB_stackMeasures_request.js │ ├── bar_chart_with_2M_1VB_stackMeasures_response.js │ ├── bar_chart_with_2M_1VB_stackMeasures_result.js │ ├── bar_chart_with_2M_2VB_request.js │ ├── bar_chart_with_2M_2VB_response.js │ ├── bar_chart_with_2M_2VB_result.js │ ├── bar_chart_with_2M_2VB_stackMeasures_request.js │ ├── bar_chart_with_2M_2VB_stackMeasures_response.js │ ├── bar_chart_with_2M_2VB_stackMeasures_result.js │ ├── bar_chart_with_2_metrics_and_view_by_attribute_request.js │ ├── bar_chart_with_2_metrics_and_view_by_attribute_response.js │ ├── bar_chart_with_2_metrics_and_view_by_attribute_result.js │ ├── bar_chart_with_3_metrics_and_view_by_attribute_request.js │ ├── bar_chart_with_3_metrics_and_view_by_attribute_response.js │ ├── bar_chart_with_3_metrics_and_view_by_attribute_result.js │ ├── bar_chart_with_4_metrics_and_view_by_two_attributes_request.js │ ├── bar_chart_with_4_metrics_and_view_by_two_attributes_response.js │ ├── bar_chart_with_4_metrics_and_view_by_two_attributes_result.js │ ├── bar_chart_with_4_metrics_and_view_by_two_attributes_with_some_null_datapoints_result.js │ ├── bar_chart_with_many_view_by_attribute_values_request.js │ ├── bar_chart_with_many_view_by_attribute_values_response.js │ ├── bar_chart_with_many_view_by_attribute_values_result.js │ ├── bar_chart_with_paged_legend.ts │ ├── bar_chart_with_pop_measure_and_view_by_attribute_request.js │ ├── bar_chart_with_pop_measure_and_view_by_attribute_response.js │ ├── bar_chart_with_pop_measure_and_view_by_attribute_result.js │ ├── bar_chart_with_previous_period_measure_request.js │ ├── bar_chart_with_previous_period_measure_response.js │ ├── bar_chart_with_previous_period_measure_result.js │ ├── bar_chart_with_single_measure_and_no_attributes_request.js │ ├── bar_chart_with_single_measure_and_no_attributes_response.js │ ├── bar_chart_with_single_measure_and_no_attributes_result.js │ ├── bar_chart_with_stack_by_and_only_one_stack_request.js │ ├── bar_chart_with_stack_by_and_only_one_stack_response.js │ ├── bar_chart_with_stack_by_and_only_one_stack_result.js │ ├── bar_chart_with_stack_by_and_view_by_attributes_request.js │ ├── bar_chart_with_stack_by_and_view_by_attributes_response.js │ ├── bar_chart_with_stack_by_and_view_by_attributes_result.js │ ├── bar_chart_with_view_by_attribute_request.js │ ├── bar_chart_with_view_by_attribute_response.js │ ├── bar_chart_with_view_by_attribute_result.js │ ├── bar_chart_without_attributes_request.js │ ├── bar_chart_without_attributes_response.js │ ├── bar_chart_without_attributes_result.js │ ├── bubble_chart_with_3_am_metrics_and_attribute_md.js │ ├── bubble_chart_with_3_am_metrics_and_attribute_request.js │ ├── bubble_chart_with_3_am_metrics_and_attribute_response.js │ ├── bubble_chart_with_3_am_metrics_and_attribute_result.js │ ├── bubble_chart_with_3_metrics_and_attribute_md.js │ ├── bubble_chart_with_3_metrics_and_attribute_request.js │ ├── bubble_chart_with_3_metrics_and_attribute_response.js │ ├── bubble_chart_with_3_metrics_and_attribute_result.js │ ├── bubble_chart_with_3_metrics_md.js │ ├── bubble_chart_with_3_metrics_request.js │ ├── bubble_chart_with_3_metrics_response.js │ ├── bubble_chart_with_3_metrics_result.js │ ├── bubble_chart_with_nulls_result.js │ ├── bullet_simple_request.js │ ├── bullet_simple_response.js │ ├── bullet_simple_result.js │ ├── chart_with_20_metric_and_view_by_attribute_reponse.js │ ├── chart_with_20_metric_and_view_by_attribute_request.js │ ├── chart_with_20_metric_and_view_by_attribute_result.js │ ├── chart_with_2_attributes_and_null_datapoints_request.js │ ├── chart_with_2_attributes_and_null_datapoints_response.js │ ├── chart_with_2_attributes_and_null_datapoints_result.js │ ├── chart_with_2_metrics_and_view_by_attribute.ts │ ├── column_chart_with_measure_and_view_by_and_computeRatio_request.js │ ├── column_chart_with_measure_and_view_by_and_computeRatio_response.js │ ├── column_chart_with_measure_and_view_by_and_computeRatio_result.js │ ├── column_chart_with_measure_and_view_by_request.js │ ├── column_chart_with_measure_and_view_by_response.js │ ├── column_chart_with_measure_and_view_by_result.js │ ├── column_chart_with_measure_and_view_by_two_attributes_and_computeRatio_request.js │ ├── column_chart_with_measure_and_view_by_two_attributes_and_computeRatio_response.js │ ├── column_chart_with_measure_and_view_by_two_attributes_and_computeRatio_result.js │ ├── column_chart_with_measure_and_view_by_two_attributes_request.js │ ├── column_chart_with_measure_and_view_by_two_attributes_response.js │ ├── column_chart_with_measure_and_view_by_two_attributes_result.js │ ├── combo_chart_with_three_measures_view_by_attribute_md_object.js │ ├── combo_chart_with_two_measures_view_by_attribute_md_object.js │ ├── dual_chart_with_computed_attribute_request.js │ ├── dual_chart_with_computed_attribute_response.js │ ├── dual_chart_with_computed_attribute_result.js │ ├── fixtures.ts │ ├── geo_chart │ │ ├── geo_chart_with_location_color_request.js │ │ ├── geo_chart_with_location_color_result.js │ │ ├── geo_chart_with_location_request.js │ │ ├── geo_chart_with_location_result.js │ │ ├── geo_chart_with_location_size_color_request.js │ │ ├── geo_chart_with_location_size_color_result.js │ │ ├── geo_chart_with_location_size_color_same_values_request.js │ │ ├── geo_chart_with_location_size_color_same_values_result.js │ │ ├── geo_chart_with_location_size_color_segment_tooltip_filters_request.js │ │ ├── geo_chart_with_location_size_color_segment_tooltip_filters_result.js │ │ ├── geo_chart_with_location_size_color_segment_tooltip_request.js │ │ ├── geo_chart_with_location_size_color_segment_tooltip_result.js │ │ ├── geo_chart_with_location_size_request.js │ │ ├── geo_chart_with_location_size_result.js │ │ ├── geo_chart_with_location_size_segment_request.js │ │ └── geo_chart_with_location_size_segment_result.js │ ├── headline_with_one_measure_request.js │ ├── headline_with_one_measure_response.js │ ├── headline_with_one_measure_result.js │ ├── headline_with_two_measures_request.js │ ├── headline_with_two_measures_response.js │ ├── headline_with_two_measures_result.js │ ├── heat_map_with_58_rows_mock_request.js │ ├── heat_map_with_58_rows_mock_result.js │ ├── heat_map_with_60_rows_mock_request.js │ ├── heat_map_with_60_rows_mock_result.js │ ├── heat_map_with_empty_cells_request.js │ ├── heat_map_with_empty_cells_response.js │ ├── heat_map_with_empty_cells_result.js │ ├── heat_map_with_metric_row_column_request.js │ ├── heat_map_with_metric_row_column_response.js │ ├── heat_map_with_metric_row_column_result.js │ ├── pie_chart_with_metrics_only_request.js │ ├── pie_chart_with_metrics_only_response.js │ ├── pie_chart_with_metrics_only_result.js │ ├── pivot_table_with_2_metrics_4_attributes_subtotals_request.js │ ├── pivot_table_with_2_metrics_4_attributes_subtotals_response.js │ ├── pivot_table_with_2_metrics_4_attributes_subtotals_result.js │ ├── pivot_table_with_column_and_row_attributes_request.js │ ├── pivot_table_with_column_and_row_attributes_response.js │ ├── pivot_table_with_column_and_row_attributes_result.js │ ├── pivot_table_with_column_row_attributes_and_totals_request.js │ ├── pivot_table_with_column_row_attributes_and_totals_response.js │ ├── pivot_table_with_column_row_attributes_and_totals_result.js │ ├── pivot_table_with_grandtotal_subtotal_2_measures_request.js │ ├── pivot_table_with_grandtotal_subtotal_2_measures_response.js │ ├── pivot_table_with_grandtotal_subtotal_2_measures_result.js │ ├── pivot_table_with_subtotals_2_measures_request.js │ ├── pivot_table_with_subtotals_2_measures_response.js │ ├── pivot_table_with_subtotals_2_measures_result.js │ ├── pivot_table_with_subtotals_request.js │ ├── pivot_table_with_subtotals_response.js │ ├── pivot_table_with_subtotals_result.js │ ├── scatter_plot_with_2_metrics_and_attribute_md.js │ ├── scatter_plot_with_2_metrics_and_attribute_request.js │ ├── scatter_plot_with_2_metrics_and_attribute_response.js │ ├── scatter_plot_with_2_metrics_and_attribute_result.js │ ├── scatter_plot_with_nulls_result.js │ ├── table_with_sort_request.js │ ├── table_with_sort_response.js │ ├── table_with_sort_result.js │ ├── test_config.ts │ ├── test_data.ts │ ├── treemap_with_metric_and_stack_by_attribute_md.js │ ├── treemap_with_metric_and_view_by_and_only_one_element_result.js │ ├── treemap_with_metric_and_view_by_attribute_md.js │ ├── treemap_with_metric_and_view_by_attribute_request.js │ ├── treemap_with_metric_and_view_by_attribute_response.js │ ├── treemap_with_metric_and_view_by_attribute_result.js │ ├── treemap_with_metric_view_by_and_stack_by_attribute_md.js │ ├── treemap_with_metric_view_by_and_stack_by_attribute_request.js │ ├── treemap_with_metric_view_by_and_stack_by_attribute_response.js │ ├── treemap_with_metric_view_by_and_stack_by_attribute_result.js │ ├── treemap_with_one_metric_md.js │ ├── treemap_with_one_metric_request.js │ ├── treemap_with_one_metric_response.js │ ├── treemap_with_one_metric_result.js │ ├── treemap_with_three_metrics_md.js │ ├── treemap_with_three_metrics_request.js │ ├── treemap_with_three_metrics_response.js │ ├── treemap_with_three_metrics_result.js │ ├── treemap_with_two_metrics_and_stack_by_attribute_md.js │ ├── treemap_with_two_metrics_and_stack_by_attribute_request.js │ ├── treemap_with_two_metrics_and_stack_by_attribute_response.js │ ├── treemap_with_two_metrics_and_stack_by_attribute_result.js │ ├── xirr_simple_request.js │ ├── xirr_simple_response.js │ └── xirr_simple_result.js ├── tsconfig.json ├── uri_components │ └── Visualization.tsx └── utils │ ├── CustomLegend.tsx │ ├── IntlDecorators.tsx │ ├── ScreenshotReadyWrapper.tsx │ ├── ScrollNotificationDiv.tsx │ ├── SmallScreenDecorator.tsx │ ├── SmallScrollDecorator.tsx │ ├── mockGenerator.ts │ └── wrap.tsx ├── styles ├── internal │ └── scss │ │ ├── bullet_chart.scss │ │ ├── charts.scss │ │ ├── config_panel.scss │ │ ├── dropdown_icons.scss │ │ ├── headline.scss │ │ └── table.scss └── scss │ ├── _settings.scss │ ├── attributeFilter.scss │ ├── bulletChart.scss │ ├── charts.scss │ ├── dateFilter.scss │ ├── geoChart.scss │ ├── headline.scss │ ├── main.scss │ ├── measureNumberFormat.scss │ ├── measureValueFilter.scss │ ├── menu.scss │ ├── numericInput.scss │ ├── pivotTable.scss │ ├── syntaxHighlightingInput.scss │ └── table.scss ├── tsconfig.build.json ├── tsconfig.dev.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules/* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/check-extended.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.github/workflows/check-extended.yaml -------------------------------------------------------------------------------- /.github/workflows/check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.github/workflows/check.yaml -------------------------------------------------------------------------------- /.github/workflows/gate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.github/workflows/gate.yaml -------------------------------------------------------------------------------- /.github/workflows/post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.github/workflows/post.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sonar.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.sonar.settings -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/middleware.js -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/test-storybook-canvas.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/test-storybook-canvas.config.js -------------------------------------------------------------------------------- /.storybook/test-storybook.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/test-storybook.config.js -------------------------------------------------------------------------------- /.storybook/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.storybook/webpack.config.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/.stylelintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/NOTICES.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/__mocks__/fixtures.ts -------------------------------------------------------------------------------- /__mocks__/styleMock.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /docker/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/docker/.config -------------------------------------------------------------------------------- /examples/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/.babelrc -------------------------------------------------------------------------------- /examples/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/.eslintrc -------------------------------------------------------------------------------- /examples/server/.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /examples/server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/package.json -------------------------------------------------------------------------------- /examples/server/src/endpoints/assignProject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/endpoints/assignProject.js -------------------------------------------------------------------------------- /examples/server/src/endpoints/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/endpoints/proxy.js -------------------------------------------------------------------------------- /examples/server/src/endpoints/redirectToHttps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/endpoints/redirectToHttps.js -------------------------------------------------------------------------------- /examples/server/src/endpoints/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/endpoints/register.js -------------------------------------------------------------------------------- /examples/server/src/endpoints/staticFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/endpoints/staticFiles.js -------------------------------------------------------------------------------- /examples/server/src/endpoints/tests/register.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/endpoints/tests/register.test.js -------------------------------------------------------------------------------- /examples/server/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/src/index.js -------------------------------------------------------------------------------- /examples/server/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/server/yarn.lock -------------------------------------------------------------------------------- /examples/src/components/AreaChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/AreaChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/AttributeElementsExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/AttributeElementsExample.jsx -------------------------------------------------------------------------------- /examples/src/components/AttributeFilterExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/AttributeFilterExample.jsx -------------------------------------------------------------------------------- /examples/src/components/AttributeSortingExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/AttributeSortingExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BarChartDynamicExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BarChartDynamicExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BarChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BarChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BarChartExportExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BarChartExportExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BarChartOnDrillExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BarChartOnDrillExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BubbleChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BubbleChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BucketExecutorExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BucketExecutorExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BulletChartDrillExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BulletChartDrillExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BulletChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BulletChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/BulletExportExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/BulletExportExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ColumnChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ColumnChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ComboChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ComboChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/CustomLegendExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/CustomLegendExample.jsx -------------------------------------------------------------------------------- /examples/src/components/CustomVisualizationExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/CustomVisualizationExample.jsx -------------------------------------------------------------------------------- /examples/src/components/CustomisedLoadingExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/CustomisedLoadingExample.jsx -------------------------------------------------------------------------------- /examples/src/components/DateFilterComponentExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/DateFilterComponentExample.jsx -------------------------------------------------------------------------------- /examples/src/components/DatePickerExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/DatePickerExample.jsx -------------------------------------------------------------------------------- /examples/src/components/DonutChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/DonutChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/DualAxisColumnChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/DualAxisColumnChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/DynamicMeasuresExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/DynamicMeasuresExample.jsx -------------------------------------------------------------------------------- /examples/src/components/DynamicSortingExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/DynamicSortingExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ErrorExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ErrorExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ExecuteExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ExecuteExample.jsx -------------------------------------------------------------------------------- /examples/src/components/GlobalFiltersExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/GlobalFiltersExample.jsx -------------------------------------------------------------------------------- /examples/src/components/HeadlineExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/HeadlineExample.jsx -------------------------------------------------------------------------------- /examples/src/components/HeadlineExportExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/HeadlineExportExample.jsx -------------------------------------------------------------------------------- /examples/src/components/HeadlineOnDrillExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/HeadlineOnDrillExample.jsx -------------------------------------------------------------------------------- /examples/src/components/HeatmapExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/HeatmapExample.jsx -------------------------------------------------------------------------------- /examples/src/components/KpiExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/KpiExample.jsx -------------------------------------------------------------------------------- /examples/src/components/LineChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/LineChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/LoadingExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/LoadingExample.jsx -------------------------------------------------------------------------------- /examples/src/components/MeasureSortingExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/MeasureSortingExample.jsx -------------------------------------------------------------------------------- /examples/src/components/MeasureValueFilterExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/MeasureValueFilterExample.jsx -------------------------------------------------------------------------------- /examples/src/components/MonthPickerExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/MonthPickerExample.jsx -------------------------------------------------------------------------------- /examples/src/components/MultipleDomainsExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/MultipleDomainsExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ParentFilterExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ParentFilterExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PieChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PieChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PivotTableDrillExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PivotTableDrillExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PivotTableDynamicExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PivotTableDynamicExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PivotTableExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PivotTableExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PivotTableExportExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PivotTableExportExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PivotTableSizingExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PivotTableSizingExample.jsx -------------------------------------------------------------------------------- /examples/src/components/PivotTableTotalsExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/PivotTableTotalsExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ResponsiveExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ResponsiveExample.jsx -------------------------------------------------------------------------------- /examples/src/components/ScatterPlotExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/ScatterPlotExample.jsx -------------------------------------------------------------------------------- /examples/src/components/StackedAreaChartExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/StackedAreaChartExample.jsx -------------------------------------------------------------------------------- /examples/src/components/TableExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/TableExample.jsx -------------------------------------------------------------------------------- /examples/src/components/TableExportExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/TableExportExample.jsx -------------------------------------------------------------------------------- /examples/src/components/TreemapExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/TreemapExample.jsx -------------------------------------------------------------------------------- /examples/src/components/XirrExample.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/XirrExample.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/CustomError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/CustomError.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/CustomLoading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/CustomLoading.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/ElementWithParam.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/ElementWithParam.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/ExampleWithExport.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/ExampleWithExport.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/ExampleWithSource.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/ExampleWithSource.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/Header.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/Layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/Layout.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/Login.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/LoginOverlay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/LoginOverlay.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/Menu.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/Registration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/Registration.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/SidebarItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/SidebarItem.jsx -------------------------------------------------------------------------------- /examples/src/components/utils/SourceDropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/components/utils/SourceDropdown.jsx -------------------------------------------------------------------------------- /examples/src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/index.jsx -------------------------------------------------------------------------------- /examples/src/routes/AboutThisProject.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/AboutThisProject.jsx -------------------------------------------------------------------------------- /examples/src/routes/AdvancedUseCases.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/AdvancedUseCases.jsx -------------------------------------------------------------------------------- /examples/src/routes/AggregationTest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/AggregationTest.jsx -------------------------------------------------------------------------------- /examples/src/routes/ArithmeticMeasure.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/ArithmeticMeasure.jsx -------------------------------------------------------------------------------- /examples/src/routes/AttributeFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/AttributeFilter.jsx -------------------------------------------------------------------------------- /examples/src/routes/BasicComponents.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/BasicComponents.jsx -------------------------------------------------------------------------------- /examples/src/routes/BucketExecutor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/BucketExecutor.jsx -------------------------------------------------------------------------------- /examples/src/routes/BulletChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/BulletChart.jsx -------------------------------------------------------------------------------- /examples/src/routes/ChartConfiguration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/ChartConfiguration.jsx -------------------------------------------------------------------------------- /examples/src/routes/ComboChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/ComboChart.jsx -------------------------------------------------------------------------------- /examples/src/routes/CustomLegend.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/CustomLegend.jsx -------------------------------------------------------------------------------- /examples/src/routes/DateFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/DateFilter.jsx -------------------------------------------------------------------------------- /examples/src/routes/DatePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/DatePicker.jsx -------------------------------------------------------------------------------- /examples/src/routes/DrillWithExternalData.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/DrillWithExternalData.jsx -------------------------------------------------------------------------------- /examples/src/routes/DynamicMeasures.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/DynamicMeasures.jsx -------------------------------------------------------------------------------- /examples/src/routes/Execute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Execute.jsx -------------------------------------------------------------------------------- /examples/src/routes/Export.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Export.jsx -------------------------------------------------------------------------------- /examples/src/routes/GeoPushpinChartDemo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/GeoPushpinChartDemo.jsx -------------------------------------------------------------------------------- /examples/src/routes/GlobalFilters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/GlobalFilters.jsx -------------------------------------------------------------------------------- /examples/src/routes/LoadingAndError.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/LoadingAndError.jsx -------------------------------------------------------------------------------- /examples/src/routes/Login.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Login.jsx -------------------------------------------------------------------------------- /examples/src/routes/MeasureValueFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/MeasureValueFilter.jsx -------------------------------------------------------------------------------- /examples/src/routes/MeasureValueFilterComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/MeasureValueFilterComponent.jsx -------------------------------------------------------------------------------- /examples/src/routes/MultipleDomains.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/MultipleDomains.jsx -------------------------------------------------------------------------------- /examples/src/routes/OnDrillHandling.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/OnDrillHandling.jsx -------------------------------------------------------------------------------- /examples/src/routes/ParentFilter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/ParentFilter.jsx -------------------------------------------------------------------------------- /examples/src/routes/PivotTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/PivotTable.jsx -------------------------------------------------------------------------------- /examples/src/routes/PivotTableDemo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/PivotTableDemo.jsx -------------------------------------------------------------------------------- /examples/src/routes/PivotTableDrilling.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/PivotTableDrilling.jsx -------------------------------------------------------------------------------- /examples/src/routes/PivotTableDynamic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/PivotTableDynamic.jsx -------------------------------------------------------------------------------- /examples/src/routes/PivotTableSizing.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/PivotTableSizing.jsx -------------------------------------------------------------------------------- /examples/src/routes/Registration.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Registration.jsx -------------------------------------------------------------------------------- /examples/src/routes/ResponsiveChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/ResponsiveChart.jsx -------------------------------------------------------------------------------- /examples/src/routes/Route404.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Route404.jsx -------------------------------------------------------------------------------- /examples/src/routes/Sorting.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Sorting.jsx -------------------------------------------------------------------------------- /examples/src/routes/TimeOverTimeComparison.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/TimeOverTimeComparison.jsx -------------------------------------------------------------------------------- /examples/src/routes/VisualizationByIdentifier.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/VisualizationByIdentifier.jsx -------------------------------------------------------------------------------- /examples/src/routes/VisualizationByUri.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/VisualizationByUri.jsx -------------------------------------------------------------------------------- /examples/src/routes/WithSubRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/WithSubRoutes.jsx -------------------------------------------------------------------------------- /examples/src/routes/Xirr.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/Xirr.jsx -------------------------------------------------------------------------------- /examples/src/routes/_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/routes/_list.js -------------------------------------------------------------------------------- /examples/src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/static/favicon.ico -------------------------------------------------------------------------------- /examples/src/static/gooddata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/static/gooddata.svg -------------------------------------------------------------------------------- /examples/src/static/logicalDataModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/static/logicalDataModel.png -------------------------------------------------------------------------------- /examples/src/utils/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/utils/colors.js -------------------------------------------------------------------------------- /examples/src/utils/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/utils/fixtures.js -------------------------------------------------------------------------------- /examples/src/utils/fixturesGeoChart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/utils/fixturesGeoChart.js -------------------------------------------------------------------------------- /examples/src/utils/fixturesTablePOC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/utils/fixturesTablePOC.js -------------------------------------------------------------------------------- /examples/src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/src/utils/helpers.js -------------------------------------------------------------------------------- /examples/test/ArithmericMeasures_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/ArithmericMeasures_test.js -------------------------------------------------------------------------------- /examples/test/AttributeFilter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/AttributeFilter_test.js -------------------------------------------------------------------------------- /examples/test/BasicComponents_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/BasicComponents_test.js -------------------------------------------------------------------------------- /examples/test/ChartConfiguration_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/ChartConfiguration_test.js -------------------------------------------------------------------------------- /examples/test/ComboChart_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/ComboChart_test.js -------------------------------------------------------------------------------- /examples/test/DateFilter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/DateFilter_test.js -------------------------------------------------------------------------------- /examples/test/DatePicker_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/DatePicker_test.js -------------------------------------------------------------------------------- /examples/test/DrillWithExternalData_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/DrillWithExternalData_test.js -------------------------------------------------------------------------------- /examples/test/DynamicMeasures_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/DynamicMeasures_test.js -------------------------------------------------------------------------------- /examples/test/Execute_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/Execute_test.js -------------------------------------------------------------------------------- /examples/test/Export_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/Export_test.js -------------------------------------------------------------------------------- /examples/test/GeoPushpinChart_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/GeoPushpinChart_test.js -------------------------------------------------------------------------------- /examples/test/GlobalFilter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/GlobalFilter_test.js -------------------------------------------------------------------------------- /examples/test/MeasureValueFilterComponent_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/MeasureValueFilterComponent_test.js -------------------------------------------------------------------------------- /examples/test/MeasureValueFilter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/MeasureValueFilter_test.js -------------------------------------------------------------------------------- /examples/test/OnDrillHandlingFixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/OnDrillHandlingFixtures.js -------------------------------------------------------------------------------- /examples/test/OnDrillHandling_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/OnDrillHandling_test.js -------------------------------------------------------------------------------- /examples/test/ParentFilter_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/ParentFilter_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableDemo_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableDemo_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableDrillExample_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableDrillExample_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableDynamicFixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableDynamicFixtures.js -------------------------------------------------------------------------------- /examples/test/PivotTableDynamic_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableDynamic_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableManualResizing_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableManualResizing_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableMenu_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableMenu_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableSizingReset_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableSizingReset_test.js -------------------------------------------------------------------------------- /examples/test/PivotTableSizing_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTableSizing_test.js -------------------------------------------------------------------------------- /examples/test/PivotTable_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/PivotTable_test.js -------------------------------------------------------------------------------- /examples/test/ResponsiveChart_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/ResponsiveChart_test.js -------------------------------------------------------------------------------- /examples/test/Sorting_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/Sorting_test.js -------------------------------------------------------------------------------- /examples/test/TimeOverTimeComparison_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/TimeOverTimeComparison_test.js -------------------------------------------------------------------------------- /examples/test/VisualizationByIdentifier_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/VisualizationByIdentifier_test.js -------------------------------------------------------------------------------- /examples/test/VisualizationByUri_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/VisualizationByUri_test.js -------------------------------------------------------------------------------- /examples/test/utils/chartHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/utils/chartHelpers.js -------------------------------------------------------------------------------- /examples/test/utils/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/utils/config.js -------------------------------------------------------------------------------- /examples/test/utils/constants.js: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export const HIGHCHART_VERSION = "7.1.1"; 3 | -------------------------------------------------------------------------------- /examples/test/utils/dateFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/utils/dateFilter.js -------------------------------------------------------------------------------- /examples/test/utils/exportUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/utils/exportUtils.js -------------------------------------------------------------------------------- /examples/test/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/utils/helpers.js -------------------------------------------------------------------------------- /examples/test/utils/pivotTableHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/test/utils/pivotTableHelpers.js -------------------------------------------------------------------------------- /examples/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/examples/webpack.config.js -------------------------------------------------------------------------------- /gdc-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/gdc-ci.yaml -------------------------------------------------------------------------------- /gdc_fossa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/gdc_fossa.yaml -------------------------------------------------------------------------------- /jest.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/jest.ci.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/jest.setup.ts -------------------------------------------------------------------------------- /jestSvgStub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/jestSvgStub.js -------------------------------------------------------------------------------- /mock-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/mock-schema.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/scripts/build-examples.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/run-examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/scripts/run-examples.sh -------------------------------------------------------------------------------- /scripts/run-testcafe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/scripts/run-testcafe.sh -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /specs/gooddata-react-components-web.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/specs/gooddata-react-components-web.spec -------------------------------------------------------------------------------- /src/components/AreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/AreaChart.tsx -------------------------------------------------------------------------------- /src/components/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/BarChart.tsx -------------------------------------------------------------------------------- /src/components/BubbleChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/BubbleChart.tsx -------------------------------------------------------------------------------- /src/components/BulletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/BulletChart.tsx -------------------------------------------------------------------------------- /src/components/ColumnChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/ColumnChart.tsx -------------------------------------------------------------------------------- /src/components/ComboChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/ComboChart.tsx -------------------------------------------------------------------------------- /src/components/DonutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/DonutChart.tsx -------------------------------------------------------------------------------- /src/components/FunnelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/FunnelChart.tsx -------------------------------------------------------------------------------- /src/components/GeoPushpinChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/GeoPushpinChart.tsx -------------------------------------------------------------------------------- /src/components/Headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/Headline.tsx -------------------------------------------------------------------------------- /src/components/Heatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/Heatmap.tsx -------------------------------------------------------------------------------- /src/components/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/LineChart.tsx -------------------------------------------------------------------------------- /src/components/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/PieChart.tsx -------------------------------------------------------------------------------- /src/components/PivotTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/PivotTable.tsx -------------------------------------------------------------------------------- /src/components/ScatterPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/ScatterPlot.tsx -------------------------------------------------------------------------------- /src/components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/Table.tsx -------------------------------------------------------------------------------- /src/components/Treemap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/Treemap.tsx -------------------------------------------------------------------------------- /src/components/Xirr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/Xirr.tsx -------------------------------------------------------------------------------- /src/components/afm/AreaChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/AreaChart.ts -------------------------------------------------------------------------------- /src/components/afm/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/BarChart.tsx -------------------------------------------------------------------------------- /src/components/afm/BubbleChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/BubbleChart.tsx -------------------------------------------------------------------------------- /src/components/afm/BulletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/BulletChart.tsx -------------------------------------------------------------------------------- /src/components/afm/ColumnChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/ColumnChart.tsx -------------------------------------------------------------------------------- /src/components/afm/ComboChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/ComboChart.tsx -------------------------------------------------------------------------------- /src/components/afm/DataSourceProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/DataSourceProvider.tsx -------------------------------------------------------------------------------- /src/components/afm/DonutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/DonutChart.tsx -------------------------------------------------------------------------------- /src/components/afm/FunnelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/FunnelChart.tsx -------------------------------------------------------------------------------- /src/components/afm/Headline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/Headline.ts -------------------------------------------------------------------------------- /src/components/afm/Heatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/Heatmap.tsx -------------------------------------------------------------------------------- /src/components/afm/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/LineChart.tsx -------------------------------------------------------------------------------- /src/components/afm/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/PieChart.tsx -------------------------------------------------------------------------------- /src/components/afm/ScatterPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/ScatterPlot.tsx -------------------------------------------------------------------------------- /src/components/afm/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/Table.tsx -------------------------------------------------------------------------------- /src/components/afm/Treemap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/Treemap.tsx -------------------------------------------------------------------------------- /src/components/afm/Xirr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/Xirr.ts -------------------------------------------------------------------------------- /src/components/afm/afmComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/afmComponents.ts -------------------------------------------------------------------------------- /src/components/afm/tests/AreaChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/AreaChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/BarChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/BarChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/ColumnChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/ColumnChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/ComboChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/ComboChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/DonutChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/DonutChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/FunnelChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/FunnelChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/Headline.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/Headline.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/Heatmap.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/Heatmap.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/LineChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/LineChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/PieChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/PieChart.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/ScatterPlot.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/ScatterPlot.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/Table.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/Table.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/Treemap.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/Treemap.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/Xirr.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/Xirr.spec.tsx -------------------------------------------------------------------------------- /src/components/afm/tests/utils/dummyFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/utils/dummyFixture.ts -------------------------------------------------------------------------------- /src/components/afm/tests/utils/dummyXirrFixture.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/afm/tests/utils/dummyXirrFixture.ts -------------------------------------------------------------------------------- /src/components/core/AreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/AreaChart.tsx -------------------------------------------------------------------------------- /src/components/core/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/BarChart.tsx -------------------------------------------------------------------------------- /src/components/core/BubbleChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/BubbleChart.tsx -------------------------------------------------------------------------------- /src/components/core/BulletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/BulletChart.tsx -------------------------------------------------------------------------------- /src/components/core/ColumnChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/ColumnChart.tsx -------------------------------------------------------------------------------- /src/components/core/ComboChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/ComboChart.tsx -------------------------------------------------------------------------------- /src/components/core/DonutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/DonutChart.tsx -------------------------------------------------------------------------------- /src/components/core/FunnelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/FunnelChart.tsx -------------------------------------------------------------------------------- /src/components/core/GeoChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/GeoChart.tsx -------------------------------------------------------------------------------- /src/components/core/Headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/Headline.tsx -------------------------------------------------------------------------------- /src/components/core/Heatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/Heatmap.tsx -------------------------------------------------------------------------------- /src/components/core/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/LineChart.tsx -------------------------------------------------------------------------------- /src/components/core/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/PieChart.tsx -------------------------------------------------------------------------------- /src/components/core/PivotTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/PivotTable.tsx -------------------------------------------------------------------------------- /src/components/core/PureTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/PureTable.tsx -------------------------------------------------------------------------------- /src/components/core/ScatterPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/ScatterPlot.tsx -------------------------------------------------------------------------------- /src/components/core/SortableTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/SortableTable.tsx -------------------------------------------------------------------------------- /src/components/core/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/Table.tsx -------------------------------------------------------------------------------- /src/components/core/Treemap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/Treemap.tsx -------------------------------------------------------------------------------- /src/components/core/Xirr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/Xirr.tsx -------------------------------------------------------------------------------- /src/components/core/base/BaseChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/base/BaseChart.tsx -------------------------------------------------------------------------------- /src/components/core/base/BaseVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/base/BaseVisualization.tsx -------------------------------------------------------------------------------- /src/components/core/base/GeoValidatorHOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/base/GeoValidatorHOC.tsx -------------------------------------------------------------------------------- /src/components/core/base/IntlWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/base/IntlWrapper.tsx -------------------------------------------------------------------------------- /src/components/core/base/TranslationsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/base/TranslationsProvider.tsx -------------------------------------------------------------------------------- /src/components/core/base/test/BaseChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/base/test/BaseChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/geoChart/GeoChartInner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/GeoChartInner.tsx -------------------------------------------------------------------------------- /src/components/core/geoChart/GeoChartRenderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/GeoChartRenderer.tsx -------------------------------------------------------------------------------- /src/components/core/geoChart/geoChartColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/geoChartColor.ts -------------------------------------------------------------------------------- /src/components/core/geoChart/geoChartDataLayers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/geoChartDataLayers.ts -------------------------------------------------------------------------------- /src/components/core/geoChart/geoChartDataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/geoChartDataSource.ts -------------------------------------------------------------------------------- /src/components/core/geoChart/geoChartTooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/geoChartTooltip.ts -------------------------------------------------------------------------------- /src/components/core/geoChart/tests/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/geoChart/tests/mock.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/AggregationsMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/AggregationsMenu.tsx -------------------------------------------------------------------------------- /src/components/core/pivotTable/ColumnHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/ColumnHeader.tsx -------------------------------------------------------------------------------- /src/components/core/pivotTable/GroupingProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/GroupingProvider.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/HeaderCell.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/HeaderCell.tsx -------------------------------------------------------------------------------- /src/components/core/pivotTable/agColumnWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agColumnWrapper.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridApiWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridApiWrapper.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridConst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridConst.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridData.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridDataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridDataSource.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridDrilling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridDrilling.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridHeaders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridHeaders.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridSorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridSorting.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridTypes.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/agGridUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/agGridUtils.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/stickyRowHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/stickyRowHandler.ts -------------------------------------------------------------------------------- /src/components/core/pivotTable/tests/agGridMock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/pivotTable/tests/agGridMock.ts -------------------------------------------------------------------------------- /src/components/core/tests/AreaChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/AreaChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/BarChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/BarChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/BubbleChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/BubbleChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/ColumnChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/ColumnChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/ComboChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/ComboChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/DonutChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/DonutChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/FunnelChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/FunnelChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/GeoChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/GeoChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/Headline.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/Headline.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/Heatmap.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/Heatmap.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/LineChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/LineChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/PieChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/PieChart.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/PivotTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/PivotTable.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/PureTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/PureTable.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/ScatterPlot.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/ScatterPlot.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/SortableTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/SortableTable.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/Table.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/Table.spec.tsx -------------------------------------------------------------------------------- /src/components/core/tests/Treemap.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/core/tests/Treemap.spec.tsx -------------------------------------------------------------------------------- /src/components/filters/AttributeFilter/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/AttributeFilter/model.ts -------------------------------------------------------------------------------- /src/components/filters/DateFilter/DateFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/DateFilter.tsx -------------------------------------------------------------------------------- /src/components/filters/DateFilter/Select/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/Select/Select.tsx -------------------------------------------------------------------------------- /src/components/filters/DateFilter/Select/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/Select/types.ts -------------------------------------------------------------------------------- /src/components/filters/DateFilter/Select/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/Select/utils.ts -------------------------------------------------------------------------------- /src/components/filters/DateFilter/Tabs/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/Tabs/Tabs.tsx -------------------------------------------------------------------------------- /src/components/filters/DateFilter/constants/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/constants/i18n.ts -------------------------------------------------------------------------------- /src/components/filters/DateFilter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/index.ts -------------------------------------------------------------------------------- /src/components/filters/DateFilter/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/filters/DateFilter/tests/utils.ts -------------------------------------------------------------------------------- /src/components/measureNumberFormat/typings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/measureNumberFormat/typings.ts -------------------------------------------------------------------------------- /src/components/menu/ControlledMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/ControlledMenu.tsx -------------------------------------------------------------------------------- /src/components/menu/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/Menu.tsx -------------------------------------------------------------------------------- /src/components/menu/MenuSharedTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/MenuSharedTypes.ts -------------------------------------------------------------------------------- /src/components/menu/MenuState.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/MenuState.tsx -------------------------------------------------------------------------------- /src/components/menu/SubMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/SubMenu.tsx -------------------------------------------------------------------------------- /src/components/menu/menuOpener/MenuOpener.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/menuOpener/MenuOpener.tsx -------------------------------------------------------------------------------- /src/components/menu/positioning/MenuPosition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/positioning/MenuPosition.tsx -------------------------------------------------------------------------------- /src/components/menu/tests/Menu.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/tests/Menu.spec.tsx -------------------------------------------------------------------------------- /src/components/menu/tests/MenuState.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/tests/MenuState.spec.tsx -------------------------------------------------------------------------------- /src/components/menu/utils/OutsideClickHandler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/menu/utils/OutsideClickHandler.tsx -------------------------------------------------------------------------------- /src/components/simple/ErrorComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/simple/ErrorComponent.tsx -------------------------------------------------------------------------------- /src/components/simple/Kpi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/simple/Kpi.tsx -------------------------------------------------------------------------------- /src/components/simple/LoadingComponent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/simple/LoadingComponent.tsx -------------------------------------------------------------------------------- /src/components/simple/SyntaxHighlightingInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/simple/SyntaxHighlightingInput.tsx -------------------------------------------------------------------------------- /src/components/simple/tests/Kpi.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/simple/tests/Kpi.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/AreaChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/AreaChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/BarChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/BarChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/BubbleChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/BubbleChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/ColumnChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/ColumnChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/ComboChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/ComboChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/DonutChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/DonutChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/FunnelChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/FunnelChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/GeoPushpinChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/GeoPushpinChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/Headline.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/Headline.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/Heatmap.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/Heatmap.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/LineChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/LineChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/PieChart.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/PieChart.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/PivotTable.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/PivotTable.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/ScatterPlot.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/ScatterPlot.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/Table.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/Table.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/Treemap.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/Treemap.spec.tsx -------------------------------------------------------------------------------- /src/components/tests/fixtures/buckets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/fixtures/buckets.ts -------------------------------------------------------------------------------- /src/components/tests/mocks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/tests/mocks.tsx -------------------------------------------------------------------------------- /src/components/uri/Visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/uri/Visualization.tsx -------------------------------------------------------------------------------- /src/components/uri/experimentalDataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/uri/experimentalDataSource.ts -------------------------------------------------------------------------------- /src/components/uri/tests/Visualization.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/uri/tests/Visualization.spec.tsx -------------------------------------------------------------------------------- /src/components/visualizations/Visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/Visualization.tsx -------------------------------------------------------------------------------- /src/components/visualizations/chart/Chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/chart/Chart.tsx -------------------------------------------------------------------------------- /src/components/visualizations/chart/colorFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/chart/colorFactory.ts -------------------------------------------------------------------------------- /src/components/visualizations/chart/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/chart/constants.ts -------------------------------------------------------------------------------- /src/components/visualizations/chart/test/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/chart/test/helper.ts -------------------------------------------------------------------------------- /src/components/visualizations/chart/tooltip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/chart/tooltip.ts -------------------------------------------------------------------------------- /src/components/visualizations/headline/Headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/headline/Headline.tsx -------------------------------------------------------------------------------- /src/components/visualizations/headline/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/headline/types.ts -------------------------------------------------------------------------------- /src/components/visualizations/styles/charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/styles/charts.scss -------------------------------------------------------------------------------- /src/components/visualizations/styles/headline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/styles/headline.scss -------------------------------------------------------------------------------- /src/components/visualizations/styles/legend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/styles/legend.scss -------------------------------------------------------------------------------- /src/components/visualizations/styles/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/styles/table.scss -------------------------------------------------------------------------------- /src/components/visualizations/styles/tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/styles/tooltip.scss -------------------------------------------------------------------------------- /src/components/visualizations/styles/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/styles/variables.ts -------------------------------------------------------------------------------- /src/components/visualizations/table/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/table/Table.tsx -------------------------------------------------------------------------------- /src/components/visualizations/table/totals/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/table/totals/utils.ts -------------------------------------------------------------------------------- /src/components/visualizations/table/utils/column.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/table/utils/column.ts -------------------------------------------------------------------------------- /src/components/visualizations/table/utils/layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/table/utils/layout.ts -------------------------------------------------------------------------------- /src/components/visualizations/table/utils/row.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/table/utils/row.ts -------------------------------------------------------------------------------- /src/components/visualizations/table/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/table/utils/sort.ts -------------------------------------------------------------------------------- /src/components/visualizations/typings/chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/typings/chart.ts -------------------------------------------------------------------------------- /src/components/visualizations/typings/legend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/typings/legend.ts -------------------------------------------------------------------------------- /src/components/visualizations/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/utils/color.ts -------------------------------------------------------------------------------- /src/components/visualizations/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/utils/common.ts -------------------------------------------------------------------------------- /src/components/visualizations/utils/intlUtils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/visualizations/utils/intlUtils.tsx -------------------------------------------------------------------------------- /src/components/withJsxExport.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/components/withJsxExport.tsx -------------------------------------------------------------------------------- /src/constants/MediaQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/MediaQueries.ts -------------------------------------------------------------------------------- /src/constants/Platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/Platform.ts -------------------------------------------------------------------------------- /src/constants/alignments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/alignments.ts -------------------------------------------------------------------------------- /src/constants/axisLabel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/axisLabel.ts -------------------------------------------------------------------------------- /src/constants/bucketNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/bucketNames.ts -------------------------------------------------------------------------------- /src/constants/dimensions.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | export const MEASUREGROUP = "measureGroup"; 3 | -------------------------------------------------------------------------------- /src/constants/errorStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/errorStates.ts -------------------------------------------------------------------------------- /src/constants/geoChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/geoChart.ts -------------------------------------------------------------------------------- /src/constants/label.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/label.ts -------------------------------------------------------------------------------- /src/constants/legend.ts: -------------------------------------------------------------------------------- 1 | // (C) 2020 GoodData Corporation 2 | 3 | export const FLUID_LEGEND_THRESHOLD = 768; 4 | -------------------------------------------------------------------------------- /src/constants/localization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/localization.ts -------------------------------------------------------------------------------- /src/constants/measureValueFilterOperators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/measureValueFilterOperators.ts -------------------------------------------------------------------------------- /src/constants/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/series.ts -------------------------------------------------------------------------------- /src/constants/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/sort.ts -------------------------------------------------------------------------------- /src/constants/visualizationTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/constants/visualizationTypes.ts -------------------------------------------------------------------------------- /src/errors/RuntimeError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/errors/RuntimeError.ts -------------------------------------------------------------------------------- /src/execution/BucketExecutor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/execution/BucketExecutor.tsx -------------------------------------------------------------------------------- /src/execution/Execute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/execution/Execute.tsx -------------------------------------------------------------------------------- /src/execution/fixtures/ExecuteAfm.fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/execution/fixtures/ExecuteAfm.fixtures.ts -------------------------------------------------------------------------------- /src/execution/tests/BucketExecutor.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/execution/tests/BucketExecutor.spec.tsx -------------------------------------------------------------------------------- /src/execution/tests/Execute.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/execution/tests/Execute.spec.tsx -------------------------------------------------------------------------------- /src/factory/ArithmeticMeasureTitleFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/factory/ArithmeticMeasureTitleFactory.ts -------------------------------------------------------------------------------- /src/factory/DerivedMeasureTitleSuffixFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/factory/DerivedMeasureTitleSuffixFactory.ts -------------------------------------------------------------------------------- /src/factory/HeaderPredicateFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/factory/HeaderPredicateFactory.ts -------------------------------------------------------------------------------- /src/factory/tests/HeaderPredicateFactory.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/factory/tests/HeaderPredicateFactory.mock.ts -------------------------------------------------------------------------------- /src/factory/tests/HeaderPredicateFactory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/factory/tests/HeaderPredicateFactory.spec.ts -------------------------------------------------------------------------------- /src/helpers/CatalogHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/CatalogHelper.ts -------------------------------------------------------------------------------- /src/helpers/IntlStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/IntlStore.ts -------------------------------------------------------------------------------- /src/helpers/MdObjectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/MdObjectHelper.ts -------------------------------------------------------------------------------- /src/helpers/TotalsConverter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/TotalsConverter.ts -------------------------------------------------------------------------------- /src/helpers/afmHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/afmHelper.ts -------------------------------------------------------------------------------- /src/helpers/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/async.ts -------------------------------------------------------------------------------- /src/helpers/conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/conversion.ts -------------------------------------------------------------------------------- /src/helpers/dimensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/dimensions.ts -------------------------------------------------------------------------------- /src/helpers/domUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/domUtils.ts -------------------------------------------------------------------------------- /src/helpers/dualAxis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/dualAxis.ts -------------------------------------------------------------------------------- /src/helpers/errorHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/errorHandlers.ts -------------------------------------------------------------------------------- /src/helpers/executionResultHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/executionResultHelper.ts -------------------------------------------------------------------------------- /src/helpers/featureFlags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/featureFlags.ts -------------------------------------------------------------------------------- /src/helpers/geoChart/colorStrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/geoChart/colorStrategy.ts -------------------------------------------------------------------------------- /src/helpers/geoChart/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/geoChart/common.ts -------------------------------------------------------------------------------- /src/helpers/geoChart/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/geoChart/data.ts -------------------------------------------------------------------------------- /src/helpers/geoChart/executionResultHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/geoChart/executionResultHelper.ts -------------------------------------------------------------------------------- /src/helpers/geoChart/viewport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/geoChart/viewport.ts -------------------------------------------------------------------------------- /src/helpers/headerPredicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/headerPredicate.ts -------------------------------------------------------------------------------- /src/helpers/mappingHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/mappingHeader.ts -------------------------------------------------------------------------------- /src/helpers/mdObjBucketHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/mdObjBucketHelper.ts -------------------------------------------------------------------------------- /src/helpers/measureTitleHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/measureTitleHelper.ts -------------------------------------------------------------------------------- /src/helpers/measureValueFilterOperator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/measureValueFilterOperator.ts -------------------------------------------------------------------------------- /src/helpers/model/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/attributes.ts -------------------------------------------------------------------------------- /src/helpers/model/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/filters.ts -------------------------------------------------------------------------------- /src/helpers/model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/index.ts -------------------------------------------------------------------------------- /src/helpers/model/measureValueFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/measureValueFilters.ts -------------------------------------------------------------------------------- /src/helpers/model/measures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/measures.ts -------------------------------------------------------------------------------- /src/helpers/model/objectToModelNotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/objectToModelNotation.ts -------------------------------------------------------------------------------- /src/helpers/model/sortBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/sortBy.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/attributes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/attributes.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/filters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/filters.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/invalid_type_guard_mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/invalid_type_guard_mocks.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/measureValueFilters.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/measureValueFilters.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/measures.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/measures.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/sortBy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/sortBy.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/utils.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/tests/widthItems.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/tests/widthItems.spec.ts -------------------------------------------------------------------------------- /src/helpers/model/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/utils.ts -------------------------------------------------------------------------------- /src/helpers/model/widthItems.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/model/widthItems.ts -------------------------------------------------------------------------------- /src/helpers/optionalStacking/areaChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/optionalStacking/areaChart.ts -------------------------------------------------------------------------------- /src/helpers/optionalStacking/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/optionalStacking/common.ts -------------------------------------------------------------------------------- /src/helpers/optionalStacking/test/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/optionalStacking/test/common.spec.ts -------------------------------------------------------------------------------- /src/helpers/resultSpec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/resultSpec.ts -------------------------------------------------------------------------------- /src/helpers/sdkCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/sdkCache.ts -------------------------------------------------------------------------------- /src/helpers/sorts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/sorts.ts -------------------------------------------------------------------------------- /src/helpers/stackByAttribute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/stackByAttribute.ts -------------------------------------------------------------------------------- /src/helpers/tableCell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tableCell.ts -------------------------------------------------------------------------------- /src/helpers/tests/CatalogHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/CatalogHelper.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/IntlStore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/IntlStore.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/MdObjectHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/MdObjectHelper.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/afmHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/afmHelper.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/conversion.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/conversion.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/dimensions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/dimensions.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/dualAxis.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/dualAxis.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/errorHandlers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/errorHandlers.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/executionResultHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/executionResultHelper.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/featureFlags.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/featureFlags.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/geoChart/colorStrategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/geoChart/colorStrategy.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/geoChart/common.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/geoChart/common.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/geoChart/data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/geoChart/data.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/geoChart/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/geoChart/fixtures.ts -------------------------------------------------------------------------------- /src/helpers/tests/geoChart/viewport.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/geoChart/viewport.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/headerPredicate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/headerPredicate.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/mappingHeader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/mappingHeader.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/mdObjBucketHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/mdObjBucketHelper.ts -------------------------------------------------------------------------------- /src/helpers/tests/measureTitleHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/measureTitleHelper.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/resultSpec.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/resultSpec.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/sdkCache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/sdkCache.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/sorts.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/sorts.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/stackByAttribute.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/stackByAttribute.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/tableCell.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/tableCell.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/utils.spec.ts -------------------------------------------------------------------------------- /src/helpers/tests/visualizationType.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/tests/visualizationType.spec.ts -------------------------------------------------------------------------------- /src/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/utils.ts -------------------------------------------------------------------------------- /src/helpers/visualizationType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/helpers/visualizationType.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/Config.ts -------------------------------------------------------------------------------- /src/interfaces/CoreComponents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/CoreComponents.ts -------------------------------------------------------------------------------- /src/interfaces/DataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/DataSource.ts -------------------------------------------------------------------------------- /src/interfaces/DrillEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/DrillEvents.ts -------------------------------------------------------------------------------- /src/interfaces/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/Events.ts -------------------------------------------------------------------------------- /src/interfaces/ExtendedDateFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/ExtendedDateFilters.ts -------------------------------------------------------------------------------- /src/interfaces/GeoChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/GeoChart.ts -------------------------------------------------------------------------------- /src/interfaces/HeaderPredicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/HeaderPredicate.ts -------------------------------------------------------------------------------- /src/interfaces/Headlines.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/Headlines.ts -------------------------------------------------------------------------------- /src/interfaces/HighchartsExtend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/HighchartsExtend.ts -------------------------------------------------------------------------------- /src/interfaces/MappingHeader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/MappingHeader.ts -------------------------------------------------------------------------------- /src/interfaces/MeasureTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/MeasureTitle.ts -------------------------------------------------------------------------------- /src/interfaces/MeasureValueFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/MeasureValueFilter.ts -------------------------------------------------------------------------------- /src/interfaces/OverTimeComparison.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/OverTimeComparison.ts -------------------------------------------------------------------------------- /src/interfaces/PivotTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/PivotTable.ts -------------------------------------------------------------------------------- /src/interfaces/PushData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/PushData.ts -------------------------------------------------------------------------------- /src/interfaces/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/Table.ts -------------------------------------------------------------------------------- /src/interfaces/Totals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/Totals.ts -------------------------------------------------------------------------------- /src/interfaces/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/Utils.ts -------------------------------------------------------------------------------- /src/interfaces/tests/MappingHeader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/tests/MappingHeader.spec.ts -------------------------------------------------------------------------------- /src/interfaces/tests/MeasureValueFilter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/interfaces/tests/MeasureValueFilter.spec.ts -------------------------------------------------------------------------------- /src/internal/assets/area/bucket-title-measures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/area/bucket-title-measures.svg -------------------------------------------------------------------------------- /src/internal/assets/area/bucket-title-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/area/bucket-title-stack.svg -------------------------------------------------------------------------------- /src/internal/assets/area/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/area/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/axis/name-position-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/axis/name-position-bottom.svg -------------------------------------------------------------------------------- /src/internal/assets/axis/name-position-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/axis/name-position-center.svg -------------------------------------------------------------------------------- /src/internal/assets/axis/name-position-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/axis/name-position-left.svg -------------------------------------------------------------------------------- /src/internal/assets/axis/name-position-middle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/axis/name-position-middle.svg -------------------------------------------------------------------------------- /src/internal/assets/axis/name-position-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/axis/name-position-right.svg -------------------------------------------------------------------------------- /src/internal/assets/axis/name-position-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/axis/name-position-top.svg -------------------------------------------------------------------------------- /src/internal/assets/bar/bucket-title-measures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bar/bucket-title-measures.svg -------------------------------------------------------------------------------- /src/internal/assets/bar/bucket-title-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bar/bucket-title-stack.svg -------------------------------------------------------------------------------- /src/internal/assets/bar/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bar/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/bubble/bucket-title-size.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bubble/bucket-title-size.svg -------------------------------------------------------------------------------- /src/internal/assets/bubble/bucket-title-view-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bubble/bucket-title-view-by.svg -------------------------------------------------------------------------------- /src/internal/assets/bullet/bucket-title-primary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bullet/bucket-title-primary.svg -------------------------------------------------------------------------------- /src/internal/assets/bullet/bucket-title-target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bullet/bucket-title-target.svg -------------------------------------------------------------------------------- /src/internal/assets/bullet/bucket-title-view-by.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/bullet/bucket-title-view-by.svg -------------------------------------------------------------------------------- /src/internal/assets/column/bucket-title-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/column/bucket-title-stack.svg -------------------------------------------------------------------------------- /src/internal/assets/column/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/column/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/donut/bucket-title-measures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/donut/bucket-title-measures.svg -------------------------------------------------------------------------------- /src/internal/assets/donut/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/donut/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/funnel/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/funnel/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/heatmap/bucket-title-stack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/heatmap/bucket-title-stack.svg -------------------------------------------------------------------------------- /src/internal/assets/heatmap/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/heatmap/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/legend/legend-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/legend/legend-bottom.svg -------------------------------------------------------------------------------- /src/internal/assets/legend/legend-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/legend/legend-left.svg -------------------------------------------------------------------------------- /src/internal/assets/legend/legend-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/legend/legend-right.svg -------------------------------------------------------------------------------- /src/internal/assets/legend/legend-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/legend/legend-top.svg -------------------------------------------------------------------------------- /src/internal/assets/line/bucket-title-measures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/line/bucket-title-measures.svg -------------------------------------------------------------------------------- /src/internal/assets/line/bucket-title-segment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/line/bucket-title-segment.svg -------------------------------------------------------------------------------- /src/internal/assets/line/bucket-title-trend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/line/bucket-title-trend.svg -------------------------------------------------------------------------------- /src/internal/assets/pie/bucket-title-measures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/pie/bucket-title-measures.svg -------------------------------------------------------------------------------- /src/internal/assets/pie/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/pie/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/assets/table/bucket-title-columns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/table/bucket-title-columns.svg -------------------------------------------------------------------------------- /src/internal/assets/table/bucket-title-measures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/table/bucket-title-measures.svg -------------------------------------------------------------------------------- /src/internal/assets/table/bucket-title-rows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/table/bucket-title-rows.svg -------------------------------------------------------------------------------- /src/internal/assets/treemap/bucket-title-view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/assets/treemap/bucket-title-view.svg -------------------------------------------------------------------------------- /src/internal/components/BaseVisualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/components/BaseVisualization.tsx -------------------------------------------------------------------------------- /src/internal/components/DisabledBubbleMessage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/components/DisabledBubbleMessage.tsx -------------------------------------------------------------------------------- /src/internal/constants/axis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/axis.ts -------------------------------------------------------------------------------- /src/internal/constants/bubble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/bubble.ts -------------------------------------------------------------------------------- /src/internal/constants/bucket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/bucket.ts -------------------------------------------------------------------------------- /src/internal/constants/dropdowns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/dropdowns.ts -------------------------------------------------------------------------------- /src/internal/constants/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/properties.ts -------------------------------------------------------------------------------- /src/internal/constants/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/sort.ts -------------------------------------------------------------------------------- /src/internal/constants/supportedProperties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/supportedProperties.ts -------------------------------------------------------------------------------- /src/internal/constants/uiConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/constants/uiConfig.ts -------------------------------------------------------------------------------- /src/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/index.ts -------------------------------------------------------------------------------- /src/internal/interfaces/AxisType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/interfaces/AxisType.ts -------------------------------------------------------------------------------- /src/internal/interfaces/Colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/interfaces/Colors.ts -------------------------------------------------------------------------------- /src/internal/interfaces/ConfigurationPanel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/interfaces/ConfigurationPanel.ts -------------------------------------------------------------------------------- /src/internal/interfaces/MinMaxControl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/interfaces/MinMaxControl.ts -------------------------------------------------------------------------------- /src/internal/interfaces/Visualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/interfaces/Visualization.ts -------------------------------------------------------------------------------- /src/internal/interfaces/tests/Visualization.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/interfaces/tests/Visualization.spec.ts -------------------------------------------------------------------------------- /src/internal/mocks/executionObjectMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/mocks/executionObjectMocks.ts -------------------------------------------------------------------------------- /src/internal/mocks/referencePointMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/mocks/referencePointMocks.ts -------------------------------------------------------------------------------- /src/internal/mocks/testColorHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/mocks/testColorHelper.tsx -------------------------------------------------------------------------------- /src/internal/mocks/testMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/mocks/testMocks.ts -------------------------------------------------------------------------------- /src/internal/mocks/uiConfigMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/mocks/uiConfigMocks.ts -------------------------------------------------------------------------------- /src/internal/mocks/visualizationObjectMocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/mocks/visualizationObjectMocks.ts -------------------------------------------------------------------------------- /src/internal/translations/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/de-DE.json -------------------------------------------------------------------------------- /src/internal/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/en-US.json -------------------------------------------------------------------------------- /src/internal/translations/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/es-ES.json -------------------------------------------------------------------------------- /src/internal/translations/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/fr-FR.json -------------------------------------------------------------------------------- /src/internal/translations/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/ja-JP.json -------------------------------------------------------------------------------- /src/internal/translations/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/nl-NL.json -------------------------------------------------------------------------------- /src/internal/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/pt-BR.json -------------------------------------------------------------------------------- /src/internal/translations/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/pt-PT.json -------------------------------------------------------------------------------- /src/internal/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/translations/zh-Hans.json -------------------------------------------------------------------------------- /src/internal/utils/bucketConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/bucketConfig.ts -------------------------------------------------------------------------------- /src/internal/utils/bucketHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/bucketHelper.ts -------------------------------------------------------------------------------- /src/internal/utils/bucketRules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/bucketRules.ts -------------------------------------------------------------------------------- /src/internal/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/colors.ts -------------------------------------------------------------------------------- /src/internal/utils/controlsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/controlsHelper.ts -------------------------------------------------------------------------------- /src/internal/utils/defaultHandlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/defaultHandlers.ts -------------------------------------------------------------------------------- /src/internal/utils/domHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/domHelper.ts -------------------------------------------------------------------------------- /src/internal/utils/drillablePredicates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/drillablePredicates.ts -------------------------------------------------------------------------------- /src/internal/utils/executionObjectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/executionObjectHelper.ts -------------------------------------------------------------------------------- /src/internal/utils/internalIntlProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/internalIntlProvider.tsx -------------------------------------------------------------------------------- /src/internal/utils/mdObjectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/mdObjectHelper.ts -------------------------------------------------------------------------------- /src/internal/utils/propertiesHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/propertiesHelper.ts -------------------------------------------------------------------------------- /src/internal/utils/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/sort.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/bucketConfig.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/bucketConfig.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/bucketHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/bucketHelper.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/bucketRules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/bucketRules.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/colors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/colors.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/controlsHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/controlsHelper.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/domHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/domHelper.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/mdObjectHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/mdObjectHelper.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/propertiesHelper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/propertiesHelper.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/tests/sort.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/tests/sort.spec.ts -------------------------------------------------------------------------------- /src/internal/utils/translations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/translations.ts -------------------------------------------------------------------------------- /src/internal/utils/visualizationsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/internal/utils/visualizationsHelper.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/proptypes/Afm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Afm.ts -------------------------------------------------------------------------------- /src/proptypes/Chart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Chart.ts -------------------------------------------------------------------------------- /src/proptypes/ChartConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/ChartConfig.ts -------------------------------------------------------------------------------- /src/proptypes/DataSource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/DataSource.ts -------------------------------------------------------------------------------- /src/proptypes/DrillableItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/DrillableItem.ts -------------------------------------------------------------------------------- /src/proptypes/Events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Events.ts -------------------------------------------------------------------------------- /src/proptypes/Execute.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Execute.ts -------------------------------------------------------------------------------- /src/proptypes/Filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Filters.ts -------------------------------------------------------------------------------- /src/proptypes/Headline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Headline.ts -------------------------------------------------------------------------------- /src/proptypes/Kpi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Kpi.ts -------------------------------------------------------------------------------- /src/proptypes/Table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Table.ts -------------------------------------------------------------------------------- /src/proptypes/Transformation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Transformation.ts -------------------------------------------------------------------------------- /src/proptypes/Visualization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/Visualization.ts -------------------------------------------------------------------------------- /src/proptypes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/proptypes/index.ts -------------------------------------------------------------------------------- /src/translations/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/de-DE.json -------------------------------------------------------------------------------- /src/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/en-US.json -------------------------------------------------------------------------------- /src/translations/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/es-ES.json -------------------------------------------------------------------------------- /src/translations/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/fr-FR.json -------------------------------------------------------------------------------- /src/translations/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/ja-JP.json -------------------------------------------------------------------------------- /src/translations/nl-NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/nl-NL.json -------------------------------------------------------------------------------- /src/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/pt-BR.json -------------------------------------------------------------------------------- /src/translations/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/pt-PT.json -------------------------------------------------------------------------------- /src/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/translations/zh-Hans.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/typings/positioning.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/typings/positioning.ts -------------------------------------------------------------------------------- /src/typings/subtract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/src/typings/subtract.ts -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentAreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentAreaChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentBarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentBarChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentBubbleChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentBubbleChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentBulletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentBulletChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentColumnChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentColumnChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentComboChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentComboChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentDonutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentDonutChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentFunnelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentFunnelChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentHeadline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentHeadline.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentHeatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentHeatmap.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentLineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentLineChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentPieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentPieChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentScatterPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentScatterPlot.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentTable.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentTreemapChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentTreemapChart.tsx -------------------------------------------------------------------------------- /stories/afm_components/AfmComponentXirr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/afm_components/AfmComponentXirr.tsx -------------------------------------------------------------------------------- /stories/core_components/AreaChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/AreaChart.tsx -------------------------------------------------------------------------------- /stories/core_components/BarChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/BarChart.tsx -------------------------------------------------------------------------------- /stories/core_components/BubbleChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/BubbleChart.tsx -------------------------------------------------------------------------------- /stories/core_components/BulletChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/BulletChart.tsx -------------------------------------------------------------------------------- /stories/core_components/ColumnChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/ColumnChart.tsx -------------------------------------------------------------------------------- /stories/core_components/ComboChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/ComboChart.tsx -------------------------------------------------------------------------------- /stories/core_components/DonutChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/DonutChart.tsx -------------------------------------------------------------------------------- /stories/core_components/Execute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Execute.tsx -------------------------------------------------------------------------------- /stories/core_components/FunnelChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/FunnelChart.tsx -------------------------------------------------------------------------------- /stories/core_components/GeoPushpinChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/GeoPushpinChart.tsx -------------------------------------------------------------------------------- /stories/core_components/Headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Headline.tsx -------------------------------------------------------------------------------- /stories/core_components/Heatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Heatmap.tsx -------------------------------------------------------------------------------- /stories/core_components/Kpi.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Kpi.tsx -------------------------------------------------------------------------------- /stories/core_components/LineChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/LineChart.tsx -------------------------------------------------------------------------------- /stories/core_components/LoadingAndError.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/LoadingAndError.tsx -------------------------------------------------------------------------------- /stories/core_components/PieChart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/PieChart.tsx -------------------------------------------------------------------------------- /stories/core_components/PivotTable/AutoResizing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/PivotTable/AutoResizing.tsx -------------------------------------------------------------------------------- /stories/core_components/PivotTable/GrowToFit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/PivotTable/GrowToFit.tsx -------------------------------------------------------------------------------- /stories/core_components/PivotTable/PivotTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/PivotTable/PivotTable.tsx -------------------------------------------------------------------------------- /stories/core_components/ScatterPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/ScatterPlot.tsx -------------------------------------------------------------------------------- /stories/core_components/Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Table.tsx -------------------------------------------------------------------------------- /stories/core_components/Treemap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Treemap.tsx -------------------------------------------------------------------------------- /stories/core_components/Xirr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/core_components/Xirr.tsx -------------------------------------------------------------------------------- /stories/data/afmComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/afmComponentProps.ts -------------------------------------------------------------------------------- /stories/data/catalog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/catalog.json -------------------------------------------------------------------------------- /stories/data/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/colors.ts -------------------------------------------------------------------------------- /stories/data/componentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/componentProps.ts -------------------------------------------------------------------------------- /stories/data/configProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/configProps.ts -------------------------------------------------------------------------------- /stories/data/dualAxis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/dualAxis.ts -------------------------------------------------------------------------------- /stories/data/geoChart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/geoChart.ts -------------------------------------------------------------------------------- /stories/data/geoChart/fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/geoChart/fixtures.js -------------------------------------------------------------------------------- /stories/data/geoChartComponentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/geoChartComponentProps.ts -------------------------------------------------------------------------------- /stories/data/headlineExecutionFixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/headlineExecutionFixtures.ts -------------------------------------------------------------------------------- /stories/data/numberFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/data/numberFormat.ts -------------------------------------------------------------------------------- /stories/helper_components/AttributeElements.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/helper_components/AttributeElements.tsx -------------------------------------------------------------------------------- /stories/helper_components/AttributeFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/helper_components/AttributeFilter.tsx -------------------------------------------------------------------------------- /stories/helper_components/CatalogHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/helper_components/CatalogHelper.tsx -------------------------------------------------------------------------------- /stories/helper_components/DateFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/helper_components/DateFilter.tsx -------------------------------------------------------------------------------- /stories/helper_components/MeasureValueFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/helper_components/MeasureValueFilter.tsx -------------------------------------------------------------------------------- /stories/helper_components/Menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/helper_components/Menu.tsx -------------------------------------------------------------------------------- /stories/hoc/withAxisName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/hoc/withAxisName.tsx -------------------------------------------------------------------------------- /stories/hoc/withChartAlignmentConfigs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/hoc/withChartAlignmentConfigs.tsx -------------------------------------------------------------------------------- /stories/internal/ChartProperties.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/ChartProperties.tsx -------------------------------------------------------------------------------- /stories/internal/ChartTransformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/ChartTransformation.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/DateFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/DateFilter.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/DateFilterButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/DateFilterButton.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/DateRangePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/DateRangePicker.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/DynamicSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/DynamicSelect.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/ListHeading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/ListHeading.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/ListItem.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/NumericInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/NumericInput.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/Select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/Select.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/Separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/Separator.tsx -------------------------------------------------------------------------------- /stories/internal/DateFilter/Tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DateFilter/Tabs.tsx -------------------------------------------------------------------------------- /stories/internal/Drilldown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/Drilldown.tsx -------------------------------------------------------------------------------- /stories/internal/DualAxesChartConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/DualAxesChartConfig.tsx -------------------------------------------------------------------------------- /stories/internal/Export.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/Export.tsx -------------------------------------------------------------------------------- /stories/internal/Headline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/Headline.tsx -------------------------------------------------------------------------------- /stories/internal/HeadlineTransformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/HeadlineTransformation.tsx -------------------------------------------------------------------------------- /stories/internal/OptionalStacking.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/OptionalStacking.tsx -------------------------------------------------------------------------------- /stories/internal/OptionalStackingArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/OptionalStackingArea.tsx -------------------------------------------------------------------------------- /stories/internal/SupportedDrillableItems.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/SupportedDrillableItems.tsx -------------------------------------------------------------------------------- /stories/internal/TableTransformation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/TableTransformation.tsx -------------------------------------------------------------------------------- /stories/internal/Visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/internal/Visualization.tsx -------------------------------------------------------------------------------- /stories/mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/mocks.ts -------------------------------------------------------------------------------- /stories/test_data/bar_chart_with_2M_2VB_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bar_chart_with_2M_2VB_request.js -------------------------------------------------------------------------------- /stories/test_data/bar_chart_with_2M_2VB_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bar_chart_with_2M_2VB_response.js -------------------------------------------------------------------------------- /stories/test_data/bar_chart_with_2M_2VB_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bar_chart_with_2M_2VB_result.js -------------------------------------------------------------------------------- /stories/test_data/bar_chart_with_paged_legend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bar_chart_with_paged_legend.ts -------------------------------------------------------------------------------- /stories/test_data/bubble_chart_with_3_metrics_md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bubble_chart_with_3_metrics_md.js -------------------------------------------------------------------------------- /stories/test_data/bubble_chart_with_nulls_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bubble_chart_with_nulls_result.js -------------------------------------------------------------------------------- /stories/test_data/bullet_simple_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bullet_simple_request.js -------------------------------------------------------------------------------- /stories/test_data/bullet_simple_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bullet_simple_response.js -------------------------------------------------------------------------------- /stories/test_data/bullet_simple_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/bullet_simple_result.js -------------------------------------------------------------------------------- /stories/test_data/fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/fixtures.ts -------------------------------------------------------------------------------- /stories/test_data/scatter_plot_with_nulls_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/scatter_plot_with_nulls_result.js -------------------------------------------------------------------------------- /stories/test_data/table_with_sort_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/table_with_sort_request.js -------------------------------------------------------------------------------- /stories/test_data/table_with_sort_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/table_with_sort_response.js -------------------------------------------------------------------------------- /stories/test_data/table_with_sort_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/table_with_sort_result.js -------------------------------------------------------------------------------- /stories/test_data/test_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/test_config.ts -------------------------------------------------------------------------------- /stories/test_data/test_data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/test_data.ts -------------------------------------------------------------------------------- /stories/test_data/treemap_with_one_metric_md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/treemap_with_one_metric_md.js -------------------------------------------------------------------------------- /stories/test_data/treemap_with_one_metric_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/treemap_with_one_metric_result.js -------------------------------------------------------------------------------- /stories/test_data/treemap_with_three_metrics_md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/treemap_with_three_metrics_md.js -------------------------------------------------------------------------------- /stories/test_data/xirr_simple_request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/xirr_simple_request.js -------------------------------------------------------------------------------- /stories/test_data/xirr_simple_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/xirr_simple_response.js -------------------------------------------------------------------------------- /stories/test_data/xirr_simple_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/test_data/xirr_simple_result.js -------------------------------------------------------------------------------- /stories/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/tsconfig.json -------------------------------------------------------------------------------- /stories/uri_components/Visualization.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/uri_components/Visualization.tsx -------------------------------------------------------------------------------- /stories/utils/CustomLegend.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/CustomLegend.tsx -------------------------------------------------------------------------------- /stories/utils/IntlDecorators.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/IntlDecorators.tsx -------------------------------------------------------------------------------- /stories/utils/ScreenshotReadyWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/ScreenshotReadyWrapper.tsx -------------------------------------------------------------------------------- /stories/utils/ScrollNotificationDiv.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/ScrollNotificationDiv.tsx -------------------------------------------------------------------------------- /stories/utils/SmallScreenDecorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/SmallScreenDecorator.tsx -------------------------------------------------------------------------------- /stories/utils/SmallScrollDecorator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/SmallScrollDecorator.tsx -------------------------------------------------------------------------------- /stories/utils/mockGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/mockGenerator.ts -------------------------------------------------------------------------------- /stories/utils/wrap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/stories/utils/wrap.tsx -------------------------------------------------------------------------------- /styles/internal/scss/bullet_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/internal/scss/bullet_chart.scss -------------------------------------------------------------------------------- /styles/internal/scss/charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/internal/scss/charts.scss -------------------------------------------------------------------------------- /styles/internal/scss/config_panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/internal/scss/config_panel.scss -------------------------------------------------------------------------------- /styles/internal/scss/dropdown_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/internal/scss/dropdown_icons.scss -------------------------------------------------------------------------------- /styles/internal/scss/headline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/internal/scss/headline.scss -------------------------------------------------------------------------------- /styles/internal/scss/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/internal/scss/table.scss -------------------------------------------------------------------------------- /styles/scss/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/_settings.scss -------------------------------------------------------------------------------- /styles/scss/attributeFilter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/attributeFilter.scss -------------------------------------------------------------------------------- /styles/scss/bulletChart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/bulletChart.scss -------------------------------------------------------------------------------- /styles/scss/charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/charts.scss -------------------------------------------------------------------------------- /styles/scss/dateFilter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/dateFilter.scss -------------------------------------------------------------------------------- /styles/scss/geoChart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/geoChart.scss -------------------------------------------------------------------------------- /styles/scss/headline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/headline.scss -------------------------------------------------------------------------------- /styles/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/main.scss -------------------------------------------------------------------------------- /styles/scss/measureNumberFormat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/measureNumberFormat.scss -------------------------------------------------------------------------------- /styles/scss/measureValueFilter.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/measureValueFilter.scss -------------------------------------------------------------------------------- /styles/scss/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/menu.scss -------------------------------------------------------------------------------- /styles/scss/numericInput.scss: -------------------------------------------------------------------------------- 1 | // (C) 2020 GoodData Corporation 2 | .gd-numeric-input { 3 | display: flex; 4 | } 5 | -------------------------------------------------------------------------------- /styles/scss/pivotTable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/pivotTable.scss -------------------------------------------------------------------------------- /styles/scss/syntaxHighlightingInput.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/syntaxHighlightingInput.scss -------------------------------------------------------------------------------- /styles/scss/table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/styles/scss/table.scss -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/HEAD/yarn.lock --------------------------------------------------------------------------------