RangeVisualizationStyle

data class RangeVisualizationStyle(    val outerColor: Color = Color.TRANSPARENT,     val rangeStyles: Map<String, RangeStyle> = mutableMapOf<String, RangeStyle>(),     val defaultRangeStyle: RangeStyle = RangeStyle())

Represents the style used to display a reachable range.

Parameters

outerColor

The Color of the area outside of the reachable range.

rangeStyles

The styles for each named Range.

defaultRangeStyle

The default fallback style for a Range.

Constructors

Link copied to clipboard
fun RangeVisualizationStyle(    outerColor: Color = Color.TRANSPARENT,     rangeStyles: Map<String, RangeStyle> = mutableMapOf<String, RangeStyle>(),     defaultRangeStyle: RangeStyle = RangeStyle())

Properties

Link copied to clipboard
val defaultRangeStyle: RangeStyle
Link copied to clipboard
val outerColor: Color
Link copied to clipboard
val rangeStyles: Map<String, RangeStyle>