dataviz: move legend to bottom in narrow graphs (#39920)

This commit is contained in:
Frédéric Péters 2020-02-16 09:50:27 +01:00
parent a20517cf23
commit 196c6ce028
1 changed files with 2 additions and 0 deletions

View File

@ -270,6 +270,8 @@ class ChartNgCell(CellBase):
else:
values = [data[i][j] for j in range(len(x_labels))]
chart.add(serie_label, values)
if width and width < 500:
chart.legend_at_bottom = True
else:
# pie, create a serie by data, to get different colours
values = data