Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • IBoxplotStylePlainProps
    • IBoxplotStyleProps

Index

Properties

Optional boxPadding

boxPadding?: number

padding of the box from its corners

default

0.1

Optional boxStyle

boxStyle?: CSSStyleDeclaration

custom styles applied to the box element

Optional coef

coef?: number

specify the coefficient for the whiskers, use <=0 for getting min/max instead the coefficient will be multiplied by the IQR

default

1.5

Optional eps

eps?: number

delta epsilon to compare

default

10e-3

Optional lineStyle

lineStyle?: CSSStyleDeclaration

custom styles applied to the whisker element

Optional margin

margin?: number

margin applied

default

0

Optional mode

mode?: "normal" | "box" | "indicator"

the render mode and level of detail to render

default

normal

Optional orient

orient?: "horizontal" | "vertical"

orientation of the box plot

default

horizontal

Optional outlierRadius

outlierRadius?: number

radius of the outlier circles

default

3

Optional outlierStyle

outlierStyle?: CSSStyleDeclaration

custom styles applied to the outlier elements

Optional quantiles

quantiles?: QuantilesMethod | QuantileMethod

specify the quantile method to use

default

quantilesType7

Optional theme

theme?: UpSetThemes

Optional tooltips

tooltips?: boolean

whether to render tooltips

default

true

Optional validAndSorted

validAndSorted?: boolean

defines that it can be assumed that the array is sorted and just contains valid numbers (which will avoid unnecessary checks and sorting)

default

false

Optional whiskersMode

whiskersMode?: "nearest" | "exact"

whiskers mode whether to compute the nearest element which is bigger/smaller than low/high whisker or the exact value

default

'nearest'

Methods

Optional numberFormat

  • numberFormat(v: number): string
  • number format used for the tooltip

    default

    .toFixed(2)

    Parameters

    • v: number

    Returns string