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 9079ec9 commit bd89833Copy full SHA for bd89833
Orange/widgets/unsupervised/owsom.py
@@ -184,7 +184,7 @@ class Outputs:
184
pie_charts = Setting(False)
185
selection = Setting(set(), schema_only=True)
186
187
- graph_name = "plot"
+ graph_name = "view"
188
189
_grid_pen = QPen(QBrush(QColor(224, 224, 224)), 2)
190
_grid_pen.setCosmetic(True)
@@ -772,6 +772,11 @@ def set_legend_pos(self):
772
self.size_x / 2,
773
(self.size_y + 0.2 + 0.3 * self.hexagonal) * self._grid_factors[1])
774
775
+ def send_report(self):
776
+ self.report_plot()
777
+ if self.attr_color:
778
+ self.report_caption(
779
+ f"Self-organizing map colored by '{self.attr_color.name}'")
780
781
def _draw_hexagon():
782
path = QPainterPath()
0 commit comments