RangeVisualizationStyle

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

Represents the style used to display a reachable range.

Important: This is a Public Preview API. It may be changed or removed at any time.

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> = emptyMap(),     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>