We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0478da9 commit f0b871fCopy full SHA for f0b871f
plot-livemap/src/commonMain/kotlin/jetbrains/datalore/plot/livemap/MapEntityBuilder.kt
@@ -58,7 +58,11 @@ internal class MapEntityBuilder {
58
val speed get() = myP.speed()!!
59
val flow get() = myP.flow()!!
60
val fillColor get() = colorWithAlpha(myP.fill()!!)
61
- val strokeColor get() = colorWithAlpha(myP.color()!!)
+ val strokeColor get() = when(myLayerKind) {
62
+ POLYGON -> myP.color()!!
63
+ else -> colorWithAlpha(myP.color()!!)
64
+ }
65
+
66
val label get() = myP.label()
67
val family get() = myP.family()
68
val hjust get() = hjust(myP.hjust())
0 commit comments