BoxPlotMode enum Null safety
Box plot series rendering mode.
Constants
- 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.
const BoxPlotMode(2)
- 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.
const BoxPlotMode(1)
- 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.
const BoxPlotMode(0)
-
values
→ const List<
BoxPlotMode> -
A constant List of the values in this enum, in order of their declaration.
const List<
BoxPlotMode>
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toString(
) → String -
A string representation of this object. [...]
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited