BoxPlotMode enum

Box plot series rendering mode.

Inheritance

Constructors

BoxPlotMode()
const

Values

normal → const BoxPlotMode
  • BoxPlotMode.normal, box plot mode set as normal.

The quartile values are calculated by splitting the list and getting the median values.

inclusive → const BoxPlotMode
  • BoxPlotMode.inclusive, box plot mode set as inclusive.

The quartile values are calculated using the formula (N−1) * P (N count, P percentile), and their index value starts from 0 in the list.

exclusive → const BoxPlotMode
  • BoxPlotMode.exclusive, box plot mode set as exclusive.

The quartile values are calculated using the formula (N+1) * P (N count, P percentile), and their index value starts from 1 in the list.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<BoxPlotMode>
A constant List of the values in this enum, in order of their declaration.