Small fixes for heat map views
This commit is contained in:
parent
61573604ef
commit
760d63bfdc
2 changed files with 4 additions and 2 deletions
|
@ -39,10 +39,12 @@ angular.module('quay').directive('heatmap', function () {
|
||||||
domainMargin: [10, 10, 10, 10],
|
domainMargin: [10, 10, 10, 10],
|
||||||
displayLegend: false,
|
displayLegend: false,
|
||||||
tooltip: true,
|
tooltip: true,
|
||||||
|
weekStartOnMonday: false,
|
||||||
legendColors: {
|
legendColors: {
|
||||||
empty: "#f4f4f4",
|
empty: "#f4f4f4",
|
||||||
min: "#c9e9fb",
|
min: "#c9e9fb",
|
||||||
max: "steelblue",
|
max: "steelblue",
|
||||||
|
base: 'white'
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -59,7 +61,7 @@ angular.module('quay').directive('heatmap', function () {
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.$watch('data', function() {
|
$scope.$watch('data', function() {
|
||||||
$timeout(refresh, 500);
|
$timeout(refresh, 750);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Reference in a new issue