BoxPlot
BoxPlot
shows summary statistics of data in a graphical form. The graphic below shows
a bloxplot superimposed on a scatter plot of the dataset.
Props
Mandatory
- min: Minumum value in the dataset
type:ScalarValue
- max: Maximum value in the dataset
type:ScalarValue
- q1: First Quartile of the dataset
type:ScalarValue
- median: Median of the dataset
type:ScalarValue
- q3: Third Quartile of the dataset
type:ScalarValue
- width: Width of the boxplot
type:ScalarValue
- y: y location of the boxplot
type:ScalarValue
Optional
- xAxis: The xAxis
type:string
default:x
- yAxis: The yAxis
type:string
default:y
- medianColor: Color name of the median line
type:string
default:black
- medianStyle: CSS properties of the median line
type:CSSProperties
default:{}
- boxColor: Color name of the box
type:string
default:black
- boxStyle: CSS Properties of the box
type:CSSProperties
default:{}
- whiskerColor: Color name of the whisker lines
type:string
default:black
- whiskerStyle: CSS Properties of the whisker lines
type:CSSProperties
default:{}
- minMaxColor: Color name of the min/max lines
type:string
default:black
- minMaxStyle: CSS Properties of the min/max lines
type:CSSProperties
default:{}
- onMouseEnter: Handler for MouseEnter events
type:MouseEventHandler<SVGGElement>
default:{}
- onMouseLeave: Handler for MouseLeave events
type:MouseEventHandler<SVGGElement>
default:{}