Skip to main content

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

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: {}