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

Dynamic Box Plot Chart User Manual

The Dynamic Box Plot Chart component visualizes statistical data using box plot diagrams, allowing users to analyze distributions, outliers, and summary statistics. It supports both mock and real data sources, and can be customized visually and functionally for various use cases.


Properties

Visual Properties

Data Source Properties

  {
    "dataPathExpression": "seriesData",
    "constantLinesExpression": "constantLines",
    "constantLines": [
      { "label": { "text": "Median" }, "value": 50 }
    ]
  }
  {
    "QUERY": { "year": 2025 },
    "PATH": {},
    "BODY": {}
  }

Event Actions

  {
    "ON_INIT": [{ "action": "log", "params": { "message": "Chart initialized" } }],
    "ON_DESTROY": [{ "action": "cleanup" }]
  }

Elements

  [
    { "type": "DynamicBoxPlotChartTooltipTemplateComponent", "props": { "text": "Custom Tooltip" } }
  ]

General Properties (Inherited)


Data Example

The chart expects an array of box plot series data, each with fields for name, high, low, median, q1, and q3.
Example data:

[
  {
    "name": "Q1",
    "high": 100,
    "low": 20,
    "median": 60,
    "q1": 40,
    "q3": 80
  },
  {
    "name": "Q2",
    "high": 120,
    "low": 30,
    "median": 70,
    "q1": 50,
    "q3": 90
  }
]

If using mock data, the chart will display a predefined set of such objects.


Property Sections

Visual

Data Source

Event Actions

Elements

General


This manual provides a structured overview of the Dynamic Box Plot Chart component, with each property explained, categorized, and accompanied by usage examples.