BoxPlotMode enum
Box plot series rendering mode.
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
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.