├── .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: -------------------------------------------------------------------------------- 1 | [*.{js,jsx}] 2 | indent_style = space 3 | indent_size = 4 4 | 5 | [*.{ts,tsx}] 6 | indent_style = space 7 | indent_size = 4 8 | 9 | [*.json] 10 | indent_style = space 11 | indent_size = 2 12 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/node_modules/* 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@gooddata", 4 | "prettier" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * dan.homola@gooddata.com ivan.nejezchleb@gooddata.com petr.dolejsi@gooddata.com 2 | 3 | /src/translations/ patrik.braborec@gooddata.com 4 | /src/internal/translations/ patrik.braborec@gooddata.com 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 110, 3 | "tabWidth": 4, 4 | "trailingComma": "all" 5 | } 6 | -------------------------------------------------------------------------------- /.sonar.settings: -------------------------------------------------------------------------------- 1 | sonar.sources=. 2 | sonar.exclusions= 3 | -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- 1 | import '@storybook/addon-options/register'; 2 | import '@storybook/addon-actions/register'; 3 | -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@gooddata/stylelint-config", 4 | "stylelint-config-prettier" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /__mocks__/styleMock.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | module.exports = {}; 3 | -------------------------------------------------------------------------------- /docker/.config: -------------------------------------------------------------------------------- 1 | # (C) 2020 GoodData Corporation 2 | 3 | # The `IMAGE_NAME` should ideally use the same tools and versions (NodeJS, Yarn...) 4 | # as the image defined in `../gdc_fosa.yaml`. 5 | IMAGE_NAME=gdc-frontend-node-16:node-16.13.0-yarn-1.22.17 6 | -------------------------------------------------------------------------------- /examples/server/.nvmrc: -------------------------------------------------------------------------------- 1 | v16.13.0 2 | -------------------------------------------------------------------------------- /examples/src/routes/Login.jsx: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | import React from "react"; 3 | 4 | import LoginComponent from "../components/utils/Login"; 5 | 6 | export const Login = props => ; 7 | 8 | export default Login; 9 | -------------------------------------------------------------------------------- /examples/src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/examples/src/static/favicon.ico -------------------------------------------------------------------------------- /examples/src/static/logicalDataModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/examples/src/static/logicalDataModel.png -------------------------------------------------------------------------------- /examples/src/utils/helpers.js: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | 3 | export const createColumnTotal = (measureLocalIdentifier, attributeLocalIdentifier, type = "sum") => { 4 | return { 5 | measureIdentifier: measureLocalIdentifier, 6 | type, 7 | attributeIdentifier: attributeLocalIdentifier, 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /examples/test/utils/constants.js: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export const HIGHCHART_VERSION = "7.1.1"; 3 | -------------------------------------------------------------------------------- /gdc_fossa.yaml: -------------------------------------------------------------------------------- 1 | # (C) 2020 GoodData Corporation 2 | 3 | # The `scan_image` should ideally use the same tools and versions (NodeJS, Yarn...) 4 | # as the image defined in `docker/.config`. 5 | --- 6 | scan_image: "harbor.intgdc.com/tools/gdc-fossa-cli-frontend-node:node-12.16.1-yarn-1.22.4" 7 | -------------------------------------------------------------------------------- /jestSvgStub.js: -------------------------------------------------------------------------------- 1 | // jest doesn't need to load real svg files during tests 2 | module.exports = ''; 3 | -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- 1 | sonar.projectKey=gooddata-react-components 2 | sonar.organization=gooddata-github 3 | 4 | sonar.sources=. 5 | sonar.exclusions= 6 | -------------------------------------------------------------------------------- /src/components/filters/DateFilter/NumericInput/NumericInput.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2020 GoodData Corporation 2 | 3 | .gd-numeric-button { 4 | padding-top: 8px; 5 | padding-bottom: 4px; 6 | outline: 0; 7 | font: inherit; 8 | color: inherit; 9 | } 10 | 11 | .gd-numeric-button-increment { 12 | border-radius: 0; 13 | } 14 | -------------------------------------------------------------------------------- /src/components/filters/DateFilter/NumericInput/utils.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | export const unless = (predicate: () => boolean, body: () => any) => { 3 | if (!predicate()) { 4 | body(); 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /src/components/filters/DateFilter/RelativeDateFilterForm/GranularityTabs.scss: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | 3 | .gd-relative-filter-form-granularity-tabs { 4 | margin-bottom: 10px; 5 | 6 | .gd-tab { 7 | margin-right: 15px; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/components/filters/DateFilter/Select/Select.scss: -------------------------------------------------------------------------------- 1 | // (C) 2019-2020 GoodData Corporation 2 | 3 | .gd-select { 4 | button, 5 | input, 6 | optgroup, 7 | select, 8 | textarea { 9 | outline: 0; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/components/filters/DateFilter/Separator/Separator.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2021 GoodData Corporation 2 | @import "~@gooddata/goodstrap/lib/core/styles/variables.scss"; 3 | 4 | .gd-separator-generic { 5 | height: 1px; 6 | margin: 0; 7 | border: 0; 8 | background: $gd-border-color; 9 | } 10 | -------------------------------------------------------------------------------- /src/components/filters/MeasureValueFilter/separators.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019-2020 GoodData Corporation 2 | 3 | export interface ISeparators { 4 | thousand: string; 5 | decimal: string; 6 | } 7 | -------------------------------------------------------------------------------- /src/components/visualizations/chart/highcharts/highchartsEntryPoint.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | // Have only one entrypoint to highcharts and drill module 3 | // Import this reexported variable in other files instead of direct import from highcharts 4 | import * as Highcharts from "highcharts"; 5 | 6 | export default Highcharts; 7 | -------------------------------------------------------------------------------- /src/components/visualizations/chart/legend/PositionTypes.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2020 GoodData Corporation 2 | export const LEFT = "left"; 3 | export const RIGHT = "right"; 4 | export const TOP = "top"; 5 | export const BOTTOM = "bottom"; 6 | export const AUTO = "auto"; 7 | export const SUPPORTED_POSITIONS = [BOTTOM, LEFT, RIGHT, TOP]; 8 | -------------------------------------------------------------------------------- /src/components/visualizations/styles/variables.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | export const styleVariables = { 3 | gdColorStateBlank: "#94a1ad", 4 | gdColorLink: "#6d7680", 5 | gdColorText: "#464e56", 6 | }; 7 | -------------------------------------------------------------------------------- /src/components/visualizations/table/constants/align.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | export const ALIGN_LEFT = "left"; 3 | export const ALIGN_RIGHT = "right"; 4 | -------------------------------------------------------------------------------- /src/components/visualizations/table/constants/layout.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export const DEFAULT_HEADER_HEIGHT: number = 26; 3 | export const DEFAULT_ROW_HEIGHT: number = 30; 4 | export const DEFAULT_FOOTER_ROW_HEIGHT: number = 30; 5 | 6 | export const TOTALS_ADD_ROW_HEIGHT: number = 50; 7 | export const TOTALS_TYPES_DROPDOWN_WIDTH: number = 150; 8 | -------------------------------------------------------------------------------- /src/constants/Platform.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | 3 | export const platformDateFormat = "YYYY-MM-DD"; 4 | -------------------------------------------------------------------------------- /src/constants/alignments.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export const TOP = "top"; 3 | export const MIDDLE = "middle"; 4 | export const BOTTOM = "bottom"; 5 | -------------------------------------------------------------------------------- /src/constants/dimensions.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | export const MEASUREGROUP = "measureGroup"; 3 | -------------------------------------------------------------------------------- /src/constants/legend.ts: -------------------------------------------------------------------------------- 1 | // (C) 2020 GoodData Corporation 2 | 3 | export const FLUID_LEGEND_THRESHOLD = 768; 4 | -------------------------------------------------------------------------------- /src/constants/localization.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | import { Localization } from "@gooddata/typings"; 3 | 4 | export const DEFAULT_LOCALE: Localization.ILocale = "en-US"; 5 | -------------------------------------------------------------------------------- /src/constants/series.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | 3 | export const SeriesChartTypes = { 4 | COLUMN: "column", 5 | LINE: "line", 6 | AREA: "area", 7 | }; 8 | -------------------------------------------------------------------------------- /src/constants/sort.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | export const ASC = "asc"; 3 | export const DESC = "desc"; 4 | -------------------------------------------------------------------------------- /src/helpers/model/index.ts: -------------------------------------------------------------------------------- 1 | // (C) 2018-2020 GoodData Corporation 2 | export * from "./attributes"; 3 | export * from "./filters"; 4 | export * from "./measureValueFilters"; 5 | export * from "./measures"; 6 | export * from "./sortBy"; 7 | export * from "./widthItems"; 8 | -------------------------------------------------------------------------------- /src/interfaces/DataSource.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | import { DataLayer } from "@gooddata/gooddata-js"; 3 | import { Execution } from "@gooddata/typings"; 4 | 5 | export type IDataSource = DataLayer.DataSource.IDataSource; 6 | -------------------------------------------------------------------------------- /src/interfaces/ExtendedDateFilters.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | export interface IExtendedDateFilterErrors { 3 | absoluteForm?: { 4 | from?: string; 5 | to?: string; 6 | }; 7 | relativeForm?: { 8 | from?: string; 9 | to?: string; 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /src/interfaces/Utils.ts: -------------------------------------------------------------------------------- 1 | // (C) 2020 GoodData Corporation 2 | export interface IMinMax { 3 | min?: number; 4 | max?: number; 5 | } 6 | -------------------------------------------------------------------------------- /src/internal/assets/bar/bucket-title-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/bar/bucket-title-view.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/bubble/bucket-title-size.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/internal/assets/bubble/bucket-title-view-by.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/internal/assets/column/bucket-title-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/column/bucket-title-view.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/combo/bucket-title-measures-column.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/combo/bucket-title-secondary-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/funnel/bucket-title-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/geoPushpin/bucket-title-segment-icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/internal/assets/geoPushpin/bucket-title-size-icon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/internal/assets/headline/bucket-title-secondary-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/heatmap/bucket-title-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/internal/assets/heatmap/bucket-title-stack.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/heatmap/bucket-title-view.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/internal/assets/scatter/bucket-title-attribute.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/scatter/bucket-title-measures-x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/scatter/bucket-title-measures-y.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/table/bucket-title-attributes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/table/bucket-title-measures.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/internal/assets/table/bucket-title-rows.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/internal/assets/treemap/bucket-title-measures.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/internal/assets/treemap/bucket-title-segment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/internal/assets/treemap/bucket-title-view.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/internal/constants/bubble.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export const SHOW_DELAY_DEFAULT = 200; 3 | export const HIDE_DELAY_DEFAULT = 0; 4 | 5 | export const BUBBLE_ARROW_OFFSET_X = 0; 6 | export const BUBBLE_ARROW_OFFSET_Y = -37; 7 | -------------------------------------------------------------------------------- /src/internal/constants/sort.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export const SORT_DIR_ASC = "asc"; 3 | export const SORT_DIR_DESC = "desc"; 4 | -------------------------------------------------------------------------------- /src/internal/utils/defaultHandlers.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export function defaultErrorHandler(error: any) { 3 | console.error(error); // tslint:disable-line:no-console 4 | } 5 | -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | import "@formatjs/intl-pluralrules"; 3 | import "@formatjs/intl-pluralrules/polyfill-locales"; 4 | -------------------------------------------------------------------------------- /src/proptypes/Filters.ts: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | import { FiltersPropTypesShape } from "../components/visualizations/proptypes/execution"; 3 | 4 | export const FiltersPropType: any = FiltersPropTypesShape; 5 | -------------------------------------------------------------------------------- /src/typings/subtract.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | export declare type Subtract = Pick>; 3 | -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Area_chart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Area_chart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Area_chart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Area_chart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Area_chart_-_stacked_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Area_chart_-_stacked_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Area_chart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Area_chart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Area_chart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Area_chart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_custom_axis_label_renaming_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_custom_axis_label_renaming_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_stacked_bar_chart_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_stacked_bar_chart_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_two_measures_one_attribute_PoP_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_two_measures_one_attribute_PoP_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BarChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BarChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BubbleChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BubbleChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BubbleChart_-_three_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BubbleChart_-_three_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_BubbleChart_-_without_grid_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_BubbleChart_-_without_grid_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ColumnChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ColumnChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ColumnChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ColumnChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ColumnChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ColumnChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ColumnChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ColumnChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ColumnChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ColumnChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ComboChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ComboChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ComboChart_-_only_bar_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ComboChart_-_only_bar_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ComboChart_-_only_line_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ComboChart_-_only_line_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ComboChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ComboChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ComboChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ComboChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ComboChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ComboChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_DonutChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_DonutChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_DonutChart_-_error_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_DonutChart_-_error_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_DonutChart_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_DonutChart_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_DonutChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_DonutChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_DonutChart_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_DonutChart_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_DonutChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_DonutChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_FunnelChart_-_basic_render_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_FunnelChart_-_basic_render_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Headline_-_one_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Headline_-_one_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Headline_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Headline_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Headline_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Headline_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_and_column_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_and_column_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_and_row_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_and_row_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_only_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_only_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_row_column_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_row_column_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_row_column_with_cloumn_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_row_column_with_cloumn_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_row_column_with_row_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_metric_row_column_with_row_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_with_left_out_some_label_of_yaxis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_with_left_out_some_label_of_yaxis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Heatmap_-_with_null_data_point_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Heatmap_-_with_null_data_point_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_LineChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_LineChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_LineChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_LineChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_LineChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_LineChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_LineChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_LineChart_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_LineChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_LineChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_error_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_error_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_PieChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_PieChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ScatterPlot_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ScatterPlot_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ScatterPlot_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ScatterPlot_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_ScatterPlot_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_ScatterPlot_-_two_measures_one_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_arithmetic_measure_with_formatting_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_arithmetic_measure_with_formatting_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_with_table_totals_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_with_table_totals_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Table_-_with_table_totals_editable_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Table_-_with_table_totals_editable_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_legend_on_the_bottom_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Treemap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Treemap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_AFM_components_Xirr_-_simple_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_AFM_components_Xirr_-_simple_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_disabled_stack_by_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_disabled_stack_by_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_enabled_stack_by_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_enabled_stack_by_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_stack_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_stack_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_undefined_values_with_stacking_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_undefined_values_with_stacking_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_undefined_values_without_stacking_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_undefined_values_without_stacking_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_AreaChart_-_with_min_max_configuration_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_AreaChart_-_with_min_max_configuration_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_60-degree_rotation_setting_on_Y_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_60-degree_rotation_setting_on_Y_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_align_axis_labels_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_align_axis_labels_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_custom_colors_by_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_custom_colors_by_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_custom_colors_by_palette_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_custom_colors_by_palette_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_child_items_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_child_items_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_child_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_child_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_items_and_stackBy_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_items_and_stackBy_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_parent_items_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_parent_items_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_parent_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_drillable_parent_items_and_dual_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_dual_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_dual_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_dual_axis_and_stack_to_100_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_dual_axis_and_stack_to_100_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_dual_axis_and_stacking_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_dual_axis_and_stacking_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_force_disable_drilling_on_axes_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_force_disable_drilling_on_axes_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_hidden_X_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_hidden_X_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_hidden_Y_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_hidden_Y_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_one_measure_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_one_measure_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_one_measure_two_attributes_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_one_measure_two_attributes_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_one_measure_with_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_one_measure_with_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_stack_measures_to_100_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_stack_measures_to_100_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_stack_to_100_on_top_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_stack_to_100_on_top_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_stacked_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_stacked_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_stacked_with_color_mapping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_stacked_with_color_mapping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_stacking_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_stacking_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_stacking_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_stacking_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_two_bottom_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_two_bottom_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_two_top_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_two_top_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_when_both_color_props_prefer_palette_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_when_both_color_props_prefer_palette_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_dataLabels_explicitly_hidden_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_dataLabels_explicitly_hidden_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BarChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BarChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_arithmetic_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_arithmetic_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_basic_render_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_basic_render_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_sort_by_attribuet_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_sort_by_attribuet_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_color_mapping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_color_mapping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_only_max_config_on_xaxis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_with_only_max_config_on_xaxis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_without_size_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_without_size_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BubbleChart_-_without_y_axis_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BubbleChart_-_without_y_axis_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_color_mapping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_color_mapping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_custom_colors_by_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_custom_colors_by_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_custom_colors_by_palette_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_custom_colors_by_palette_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_drill_on_the_second_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_drill_on_the_second_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_hidden_X_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_hidden_X_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_hidden_Y_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_hidden_Y_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_and_comparative_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_and_comparative_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_and_target_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_and_target_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_measure_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_measure_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_measure_with_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_primary_measure_with_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_rotation_setting_on_Y_axis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_rotation_setting_on_Y_axis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_BulletChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_BulletChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_drillable_items_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_dual_axis_with_small_height_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_dual_axis_with_small_height_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_force_disable_drilling_on_axes_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_force_disable_drilling_on_axes_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ColumnChart_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_dual_axis_with_same_chart_type_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_dual_axis_with_same_chart_type_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_empty_primary_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_empty_primary_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_empty_secondary_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_empty_secondary_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_stack_primary_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_stack_primary_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_stack_primary_measures_to_percent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_stack_primary_measures_to_percent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ComboChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ComboChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_DonutChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_DonutChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_FunnelChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_FunnelChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_FunnelChart_-_basic_render_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_FunnelChart_-_basic_render_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_FunnelChart_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_FunnelChart_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_empty_map_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_empty_map_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_and_color_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_and_color_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_and_size_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_and_size_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_size_and_color_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_GeoPushpinChart_-_with_location_size_and_color_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Headline_-_one_measure_with_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Headline_-_one_measure_with_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Headline_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Headline_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Headline_-_two_measures_with_PoP_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Headline_-_two_measures_with_PoP_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Headline_-_two_measures_with_previous_period_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Headline_-_two_measures_with_previous_period_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Headline_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Headline_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_Heatmap_with_null_data_point_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_Heatmap_with_null_data_point_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_custom_colors_with_color_mapping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_custom_colors_with_color_mapping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_and_columns_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_and_columns_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_and_rows_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_and_rows_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_only_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_only_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_row_column_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_row_column_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_row_column_with_cloumn_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_row_column_with_cloumn_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_row_column_with_row_alias_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_metric_row_column_with_row_alias_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Heatmap_-_with_left_out_some_label_of_yaxis_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Heatmap_-_with_left_out_some_label_of_yaxis_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_KPI_-_KPI_error_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_KPI_-_KPI_error_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_KPI_-_KPI_measure_1_with_default_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_KPI_-_KPI_measure_1_with_default_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_KPI_-_KPI_measure_1_with_number_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_KPI_-_KPI_measure_1_with_number_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_KPI_-_KPI_measure_9_with_no_data_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_KPI_-_KPI_measure_9_with_no_data_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_KPI_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_KPI_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_some_measure_with__format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_some_measure_with__format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_with_German_number_format_in_tooltip_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_LineChart_-_with_min_max_configuration_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_LineChart_-_with_min_max_configuration_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PieChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PieChart_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_custom_measure_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_custom_measure_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_empty_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_empty_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_only_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_only_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_subtotals_-_all_labels_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_subtotals_-_all_labels_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_PivotTable_PivotTable_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-__format_on_y-axes_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-__format_on_y-axes_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_basic_render_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_basic_render_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_sort_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_color_mapping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_color_mapping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_ScatterPlot_-_with_min_max_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_custom_measure_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_custom_measure_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_custom_number_separators_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_custom_number_separators_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_empty_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_empty_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_formatted_arithmetic_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_formatted_arithmetic_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_renamed_measure_and_renamed_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_sorted_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_sorted_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_table_with_resizing_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_two_measures_one_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_with_table_totals_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_with_table_totals_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Table_-_with_table_totals_editable_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Table_-_with_table_totals_editable_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_all_default_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_all_default_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_custom_colors_and_color_mapping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_custom_colors_and_color_mapping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_custom_colors_by_hexa_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_custom_colors_by_hexa_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_data_labels_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_data_labels_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_measure_and_View_By_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_measure_and_View_By_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_measure_and_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_measures_and_Segment_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_measures_and_Segment_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_with_different_legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Treemap_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Treemap_-_with_disabled_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Core_components_Xirr_-_simple_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Core_components_Xirr_-_simple_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Drilldown_-_Area_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Drilldown_-_Area_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Drilldown_-_Area_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Drilldown_-_Area_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Drilldown_-_Line_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Drilldown_-_Line_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Drilldown_-_Line_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Drilldown_-_Line_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Drilldown_-_Stacked_bar_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Drilldown_-_Stacked_bar_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Drilldown_-_Table_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Drilldown_-_Table_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Headline_-_one_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Headline_-_one_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Helper_components_DateFilter_-_full-featured_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Helper_components_DateFilter_-_full-featured_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Helper_components_Menu_-_aggregation_menus_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Helper_components_Menu_-_aggregation_menus_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_absoluteForm_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_absoluteForm_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_absolutePreset_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_absolutePreset_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_allTime_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_allTime_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_relativeForm_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_relativeForm_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_relativePreset_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButtonLocalized_-_relativePreset_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButton_-_default_state_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButton_-_default_state_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButton_-_opened_state_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterButton_-_opened_state_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilterFormWrapper_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilterFormWrapper_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilter_-_full-featured_opened_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilter_-_full-featured_opened_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateFilter_-_localized_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateFilter_-_localized_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateRangePicker_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateRangePicker_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DateRangePicker_-_renders_with_container_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DateRangePicker_-_renders_with_container_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_empty_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_empty_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_initial_open_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_initial_open_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_initial_open_with_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_initial_open_with_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_initial_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_DynamicSelect_-_initial_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_ListHeading_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_ListHeading_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_ListItem_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_ListItem_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_NumericInput_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_NumericInput_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_Select_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_Select_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_Separator_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_Separator_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DateFilter_Tabs_-_renders_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DateFilter_Tabs_-_renders_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Area_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Area_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Area_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Area_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Bubble_chart_with_AM_drilling_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Bubble_chart_with_AM_drilling_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Bubble_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Bubble_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Combo_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Combo_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Headline_drillable_AM_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Headline_drillable_AM_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Headline_drillable_primary_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Headline_drillable_primary_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Headline_drillable_secondary_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Headline_drillable_secondary_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Heat_Map_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Heat_Map_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Heatmap_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Heatmap_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Line_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Line_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Line_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Line_chart_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Pivot_table_with_AM_drillable_predicates_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Pivot_table_with_AM_drillable_predicates_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Scatter_plot_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Scatter_plot_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Stacked_bar_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Stacked_bar_chart_drillable_by_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Table_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Table_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Table_legacy_drillable_items_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Table_legacy_drillable_items_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_Treemap_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_Treemap_with_onFiredDrillEvent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Drilldown_-_force_disable_drill_on_axes_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Drilldown_-_force_disable_drill_on_axes_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_DualAxesMinMaxConfig_-_Dataset_without_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_DualAxesMinMaxConfig_-_Dataset_without_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_HeadlineTransformation_-_Drillable_primary_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_HeadlineTransformation_-_Drillable_primary_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_HeadlineTransformation_-_Drillable_secondary_value_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_HeadlineTransformation_-_Drillable_secondary_value_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Above_versus_limit_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Above_versus_limit_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Below_versus_limit_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Below_versus_limit_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Formatted_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Formatted_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Headline_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Headline_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Invalid_value_-_custom_formatting_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Invalid_value_-_custom_formatting_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Invalid_value_-_default_formatting_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Invalid_value_-_default_formatting_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_One_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_One_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Truncated_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Truncated_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_-_Two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_-_Two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_Drilldown_eventing_-_Invalid_values_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_Drilldown_eventing_-_Invalid_values_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_Drilldown_eventing_-_One_measure_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_Drilldown_eventing_-_One_measure_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Headline_Drilldown_eventing_-_Two_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Headline_Drilldown_eventing_-_Two_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Custom_color_palette_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Custom_color_palette_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Dynamic_Chart_test_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Dynamic_Chart_test_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Legend_positions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Legend_positions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Responsive_width_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_HighCharts_ChartTransformation_-_Responsive_width_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Fill_parent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Fill_parent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Fixed_dimensions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Fixed_dimensions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Show_more_Show_less_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Show_more_Show_less_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Sticky_header_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Sticky_header_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Totals_edit_mode_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Totals_edit_mode_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Totals_view_mode_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Totals_view_mode_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_TableTransformation_-_Vertical_scroll_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_TableTransformation_-_Vertical_scroll_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Visualization_-_visualization_stacked_area_chart_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Visualization_-_visualization_stacked_area_chart_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Visualization_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Visualization_-_with_axis_name_position_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Visualization_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Visualization_-_with_axis_name_visibility_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Internal_Visualization_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Internal_Visualization_-_with_different_chart_alignments_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Measure_Number_Format_-_Custom_format_dialog_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Measure_Number_Format_-_Custom_format_dialog_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Measure_Number_Format_-_Format_presets_dropdown_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Measure_Number_Format_-_Format_presets_dropdown_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Aggregations_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Aggregations_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Fill_parent_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Fill_parent_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Fixed_dimensions_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Fixed_dimensions_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Show_more_Show_less_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Show_more_Show_less_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Sticky_header_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Sticky_header_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Totals_edit_mode_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Totals_edit_mode_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Totals_view_mode_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Totals_view_mode_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Table_-_Vertical_scroll_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Table_-_Vertical_scroll_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_Bullet_chart_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_Bullet_chart_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_Combo_chart_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_Combo_chart_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_Combo_chart_with_custom_chart_type_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_Combo_chart_with_custom_chart_type_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_Combo_chart_with_identifier_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_Combo_chart_with_identifier_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_GeoPushpinChart_example_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_GeoPushpinChart_example_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_Pivot_table_grouping_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_Pivot_table_grouping_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_example_-_experimental_execution_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_example_-_experimental_execution_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_example_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_example_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_example_with_German_format_number_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_example_with_German_format_number_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_example_with_custom_legend_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_example_with_custom_legend_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_PoP_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_PoP_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_applied_filter_and_custom_colors_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_applied_filter_and_custom_colors_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_arithmetic_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_arithmetic_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_disabled_gridline_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_disabled_gridline_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_eventing_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_eventing_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_overriden_config_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_overriden_config_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_chart_with_previous_period_measures_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_chart_with_previous_period_measures_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_custom_color_palette_in_style_settings_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_custom_color_palette_in_style_settings_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_dynamic_visualization_test_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_dynamic_visualization_test_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_headline_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_headline_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_headline_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_headline_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_headline_with_drillableItems_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_headline_with_drillableItems_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_example_-_experimental_execution_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_example_-_experimental_execution_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_example_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_example_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_example_with_identifier_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_example_with_identifier_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_resizable_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_resizable_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_with_German_number_format_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_with_German_number_format_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_with_eventing_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_with_eventing_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_with_explicitly_turn_on_growToFit_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_with_explicitly_turn_on_growToFit_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_table_with_feature_flag_resizing_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_table_with_feature_flag_resizing_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_xirr_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_xirr_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_URI_components_-_xirr_with_drillableItems_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_URI_components_-_xirr_with_drillableItems_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Visualization_-_chart_example_with_custom_legend_0_screenshot-wrapper_0_desktop.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Visualization_-_chart_example_with_custom_legend_0_screenshot-wrapper_0_desktop.1.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Visualization_-_dynamic_visualization_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Visualization_-_dynamic_visualization_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Visualization_-_visualization_bar_chart_with_view_by_attribute_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Visualization_-_visualization_bar_chart_with_view_by_attribute_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Visualization_-_visualization_bar_chart_without_attributes_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Visualization_-_visualization_bar_chart_without_attributes_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Visualization_-_visualization_pie_chart_with_metrics_only_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Visualization_-_visualization_pie_chart_with_metrics_only_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/__screenshots__/storybook_Visualization_-_visualization_stacked_area_chart_0_screenshot-wrapper_0_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gooddata/gooddata-react-components/6f0f85ccbb3eeecb28a76e4d005c283ea7b39822/stories/__screenshots__/storybook_Visualization_-_visualization_stacked_area_chart_0_screenshot-wrapper_0_desktop.png -------------------------------------------------------------------------------- /stories/data/dualAxis.ts: -------------------------------------------------------------------------------- 1 | // (C) 2019 GoodData Corporation 2 | import { VisualizationTypes } from "../../src"; 3 | 4 | export const BASE_DUAL_AXIS_CHARTS = [ 5 | VisualizationTypes.COLUMN, 6 | VisualizationTypes.BAR, 7 | VisualizationTypes.LINE, 8 | ]; 9 | -------------------------------------------------------------------------------- /stories/utils/IntlDecorators.tsx: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | import * as React from "react"; 3 | import { IntlWrapper } from "../../src/components/core/base/IntlWrapper"; 4 | 5 | export const IntlDecorator = (components: JSX.Element, locale: string = "en-US"): JSX.Element => ( 6 | {components} 7 | ); 8 | -------------------------------------------------------------------------------- /styles/internal/scss/bullet_chart.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2020 GoodData Corporation 2 | @import "../../scss/bulletChart"; 3 | -------------------------------------------------------------------------------- /styles/internal/scss/charts.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | @import "../../scss/charts.scss"; 3 | -------------------------------------------------------------------------------- /styles/internal/scss/headline.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | @import "../../scss/headline"; 3 | -------------------------------------------------------------------------------- /styles/internal/scss/table.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | @import "../../scss/table.scss"; 3 | 4 | .table-resizer { 5 | width: 100%; 6 | height: 100%; 7 | } 8 | -------------------------------------------------------------------------------- /styles/scss/bulletChart.scss: -------------------------------------------------------------------------------- 1 | // (C) 2020 GoodData Corporation 2 | 3 | @import "../../src/components/visualizations/styles/bulletChart.scss"; 4 | -------------------------------------------------------------------------------- /styles/scss/charts.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | // TODO: move to styles folder 3 | @import "../../src/components/visualizations/styles/charts.scss"; 4 | -------------------------------------------------------------------------------- /styles/scss/headline.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | 3 | @import "../../src/components/visualizations/styles/headline.scss"; 4 | -------------------------------------------------------------------------------- /styles/scss/menu.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2019 GoodData Corporation 2 | .gd-menuOpenner { 3 | position: relative; 4 | z-index: 1; 5 | } 6 | 7 | .gd-menuPosition-wrapper { 8 | position: relative; 9 | } 10 | 11 | .gd-menuOpenedByClick-togglerWrapped { 12 | display: inline-block; 13 | } 14 | -------------------------------------------------------------------------------- /styles/scss/numericInput.scss: -------------------------------------------------------------------------------- 1 | // (C) 2020 GoodData Corporation 2 | .gd-numeric-input { 3 | display: flex; 4 | } 5 | -------------------------------------------------------------------------------- /styles/scss/table.scss: -------------------------------------------------------------------------------- 1 | // (C) 2007-2018 GoodData Corporation 2 | @import "../../src/components/visualizations/styles/table.scss"; 3 | -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "include": [ 4 | "src/index.ts", 5 | "src/typings.d.ts", 6 | "src/internal/index.ts" 7 | ], 8 | "compilerOptions": { 9 | "noImplicitAny": true 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "include": [ 4 | "src/index.ts", 5 | "src/typings.d.ts", 6 | "src/internal/index.ts" 7 | ], 8 | "compilerOptions": { 9 | "noImplicitAny": false, 10 | "noUnusedLocals": false, 11 | "noUnusedParameters": false, 12 | "pretty": true 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "@gooddata/tslint-config", 4 | "tslint-config-prettier" 5 | ] 6 | } 7 | --------------------------------------------------------------------------------