Skip to content

Commit

Permalink
Merge pull request #6281 from janezd/violinplot-checkbox-names
Browse files Browse the repository at this point in the history
Violin Plot: Change checkbox labels for strips and rug
  • Loading branch information
janezd authored Jan 6, 2023
2 parents ea470b5 + 2c2e272 commit 975aaf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Orange/widgets/visualize/owviolinplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -850,9 +850,9 @@ def _add_controls(self):
sizePolicy=(QSizePolicy.Minimum, QSizePolicy.Maximum))
gui.checkBox(box, self, "show_box_plot", "Box plot",
callback=self.__show_box_plot_changed)
gui.checkBox(box, self, "show_strip_plot", "Strip plot",
gui.checkBox(box, self, "show_strip_plot", "Density dots",
callback=self.__show_strip_plot_changed)
gui.checkBox(box, self, "show_rug_plot", "Rug plot",
gui.checkBox(box, self, "show_rug_plot", "Density lines",
callback=self.__show_rug_plot_changed)
self._order_violins_cb = gui.checkBox(
box, self, "order_violins", "Order subgroups",
Expand Down

0 comments on commit 975aaf5

Please sign in to comment.