DefaultRule

@Serializable
data class DefaultRule(val color: String, val icon: Icon, val selectedIcon: Icon? = null, val minSize: Double = 0.5, val size: Double = 8.0) : StoresStyle.Rule

Structure for the default rule.

Constructors

Link copied to clipboard
constructor(color: String, icon: Icon, selectedIcon: Icon? = null, minSize: Double = 0.5, size: Double = 8.0)

Properties

Link copied to clipboard
open override val color: String

The color to be used on the circle representation

Link copied to clipboard
open override val icon: Icon

The icon to be used when above a given breakpoint

Link copied to clipboard
val minSize: Double = 0.5

The minimum size of the circle for the dot representation (default: 0.5)

Link copied to clipboard
open override val selectedIcon: Icon? = null

The icon to be used if the store is selected

Link copied to clipboard
val size: Double = 8.0

The maximum size of the circle for the dot representation (default: 8.0)