fix(graph): fixed table legend min-height, fixes #7221

This commit is contained in:
Torkel Ödegaard
2017-01-11 15:22:31 +01:00
parent edae622d8f
commit bd8899b37d
3 changed files with 88 additions and 4 deletions

View File

@@ -198,7 +198,7 @@ function (angular, _, $) {
var topPadding = 6;
var tbodyElem = $('<tbody></tbody>');
tbodyElem.css("height", maxHeight - topPadding);
tbodyElem.css("max-height", maxHeight - topPadding);
tbodyElem.append(tableHeaderElem);
tbodyElem.append(seriesElements);
$container.append(tbodyElem);