(this page was created automatically. In case of formatting issues, please visit the official Wiki Page)

Stacked bar chart

The Dynamic Stacked Bar Chart Component is a powerful data visualization tool that displays data as horizontal bars stacked on top of each other. This chart type is particularly useful for comparing contributions of different categories to a total and showing the composition of each entity. The component connects to data sources and provides various configuration options to customize its appearance and behavior.

Properties

Visual Properties

Datasource Properties

Event Actions

General

Authorization

Visibility

Testing Hooks

Data Format Requirements

The Stacked Bar Chart component expects data in the following format:

[
  { 
    "region": "North America", 
    "product1": 10000, 
    "product2": 5000, 
    "product3": 15000 
  },
  { 
    "region": "Europe", 
    "product1": 12000, 
    "product2": 8000, 
    "product3": 10000 
  },
  { 
    "region": "Asia", 
    "product1": 8000, 
    "product2": 9000, 
    "product3": 6000 
  }
]

The chartConfiguration property determines which fields are used for the category axis (e.g., "region") and which fields are used as stack series (e.g., "product1", "product2", "product3").

Chart Configuration Details

The chartConfiguration property allows for detailed control of how data is visualized:

This component is designed to handle both simple and complex data structures, making it versatile for various business visualization needs.