Skip to content

Commit d4f0ef6

Browse files
Use outlierAlpha to boxplot outliers (not apply alpha).
1 parent 6bf8f25 commit d4f0ef6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/geom/geom_boxplot.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ fun geomBoxplot(
172172
sampling = null,
173173
orientation = orientation,
174174
x = x, y = y,
175-
alpha = outlierAlpha ?: alpha,
175+
alpha = outlierAlpha,
176176
color = outlierColor ?: color,
177177
fill = outlierFill ?: fill,
178178
shape = outlierShape ?: shape,

plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/stat/stat_boxplot.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ fun statBoxplot(
161161
showLegend = false,
162162
sampling = null,
163163
x = x, y = y,
164-
alpha = outlierAlpha ?: alpha,
164+
alpha = outlierAlpha,
165165
color = outlierColor ?: color,
166166
fill = outlierFill ?: fill,
167167
shape = outlierShape ?: shape,

0 commit comments

Comments
 (0)