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

Histogram chart

The Dynamic Histogram Chart Component is a powerful data visualization tool that displays the distribution of data across different categories or bins. Histograms are particularly useful for showing frequency distributions, data density, and identifying patterns in data sets. This component works with various data sources and provides multiple configuration options to customize its appearance and behavior for optimal data representation.

Properties

Visual Properties

Datasource Properties

Event Actions

General

Authorization

Visibility

Testing Hooks

Data Format Requirements

The Histogram Chart component expects data in the following format:

[
  { "category": "0-10", "value": 12 },
  { "category": "11-20", "value": 25 },
  { "category": "21-30", "value": 47 },
  { "category": "31-40", "value": 35 },
  { "category": "41-50", "value": 28 },
  { "category": "51-60", "value": 18 },
  { "category": "61+", "value": 9 }
]

The component will automatically use the "category" field (or equivalent as specified in configuration) for the x-axis labels and the "value" field for the height of each bar.

Common Use Cases

The Dynamic Histogram Chart component is commonly used for:

  1. Age distribution analysis - Showing how many customers fall into each age group
  2. Transaction size analysis - Displaying frequency of transactions across different value ranges
  3. Time-based frequency analysis - Showing number of events occurring during different time periods
  4. Data quality assessment - Visualizing the distribution of values to identify outliers or data skew

Customization Capabilities

The component allows for extensive customization:

This flexibility makes the histogram adaptable to various data visualization needs while maintaining a clean and professional appearance.