Box Plot Mark
interface BoxPlotMark<DOMAIN, XVAL, YVAL> : MarkXY<DOMAIN, XVAL, YVAL> , HasSymbol<DOMAIN> , HasFill<DOMAIN> , HasSize<DOMAIN> , HasStrokeColor<DOMAIN> , HasStrokeWidth<DOMAIN> , HasCustomTooltip<DOMAIN> , HasLegendDecorator<DOMAIN>
Content copied to clipboard
Draw BoxPlot (or candle) for a given Dataset and X and Y Dimensions.
Functions
drawHighlight
Link copied to clipboard
open fun drawHighlight(drawingZone: DrawingZone, highlightedData: Collection<Datum<DOMAIN>>)
Content copied to clipboard
Draw a highlighted sign on the DrawingZone for each elements of a given dataset.
drawMark
Link copied to clipboard
drawSelection
Link copied to clipboard
open fun drawSelection(drawingZone: DrawingZone, selectedData: Collection<Datum<DOMAIN>>)
Content copied to clipboard
Draw a selected sign on the DrawingZone for each elements of a given dataset.
getEventZones
Link copied to clipboard
open fun getEventZones(dataset: Dataset<DOMAIN>): Collection<EventZone<DOMAIN>>
Content copied to clipboard
Get all of interactive zones for this Mark.
getTooltipPosition
Link copied to clipboard
abstract fun getTooltipPosition(datum: Datum<DOMAIN>, drawingZone: DrawingZone): TooltipPosition?
Content copied to clipboard
Properties
defaultLegendDecorator
Link copied to clipboard
The default legend decorator for a given Datum.
fillHighlight
Link copied to clipboard
The Dimension used to define a filling color from a DOMAIN object.
fillSelect
Link copied to clipboard
The Dimension used to define a filling color from a DOMAIN object.
legendDecorator
Link copied to clipboard
The legend decorator lambda will be called on each series, use this to draw custom decorations for your series.
lowerQuartile
Link copied to clipboard
The "lower Quartile" or "First quartile" value accessor, use this to provide the value for each of your domain object.
showSymbols
Link copied to clipboard
Show / hide symbols.
strokeColor
Link copied to clipboard
The Dimension used to define the stroke color from a DOMAIN object.
strokeColorHighlight
Link copied to clipboard
The Dimension used to define the "highlighted" stroke color from a DOMAIN object.
strokeColorSelect
Link copied to clipboard
The Dimension used to define the "selected" stroke color from a DOMAIN object.
strokeWidth
Link copied to clipboard
The Dimension used to define the stroke thickness from a DOMAIN object.
strokeWidthHighlight
Link copied to clipboard
The Dimension used to define the "highlighted" stroke thickness from a DOMAIN object.
strokeWidthSelect
Link copied to clipboard
The Dimension used to define the "selected" stroke thickness from a DOMAIN object.
upperQuartile
Link copied to clipboard
The "upper Quartile" or "Third quartile" value accessor, use this to provide the value for each of your domain object.
xAxisConfig
Link copied to clipboard
The configuration object AxisConfig used for the X axis.
yAxisConfig
Link copied to clipboard
The configuration object AxisConfig used for the Y axis.