# Type alias BoxplotChartCustomDataOptions
BoxplotChartCustomDataOptions:
object
Configuration for how to query aggregate data and assign data to axes of a Boxplot chart.
The Boxplot chart can receive multiple numeric columns, which represent all the metrics
such as whisker max
, whisker min
, box max
, box median
, and box min
.
# Type declaration
# category
category: [(Column | StyledColumn)?]
Columns (or attributes) whose values represent categories in the chart.
# outliers
outliers?: [Column
| StyledColumn
]
Optional measure columns (or measures) representing the boxplot outliers value.
# value
value: (CalculatedMeasureColumn
| Column
| MeasureColumn
| StyledColumn
| StyledMeasureColumn
)[]
Measure columns (or measures) representing the target numeric values used for computing boxplot metrics.
# valueTitle
valueTitle: string
The title for the numeric value column in the chart.