Skip to content

Commit 975aaf5

Browse files
authored
Merge pull request #6281 from janezd/violinplot-checkbox-names
Violin Plot: Change checkbox labels for strips and rug
2 parents ea470b5 + 2c2e272 commit 975aaf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Orange/widgets/visualize/owviolinplot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -850,9 +850,9 @@ def _add_controls(self):
850850
sizePolicy=(QSizePolicy.Minimum, QSizePolicy.Maximum))
851851
gui.checkBox(box, self, "show_box_plot", "Box plot",
852852
callback=self.__show_box_plot_changed)
853-
gui.checkBox(box, self, "show_strip_plot", "Strip plot",
853+
gui.checkBox(box, self, "show_strip_plot", "Density dots",
854854
callback=self.__show_strip_plot_changed)
855-
gui.checkBox(box, self, "show_rug_plot", "Rug plot",
855+
gui.checkBox(box, self, "show_rug_plot", "Density lines",
856856
callback=self.__show_rug_plot_changed)
857857
self._order_violins_cb = gui.checkBox(
858858
box, self, "order_violins", "Order subgroups",

0 commit comments

Comments
 (0)