We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b03e8a0 commit 8da1569Copy full SHA for 8da1569
por/dashboard/static/por_backlog/tekken.js
@@ -10,7 +10,7 @@ function drawChart(){
10
return Math.floor(data.getValue(rowNum, 1) / data.getValue(rowNum, 2) * 100)
11
}
12
function Filler2Perc(data, rowNum){
13
- return Math.floor((data.getValue(rowNum, 2) - data.getValue(rowNum, 1)) / data.getValue(rowNum, 2) * 100)
+ return Math.floor((data.getValue(rowNum, 2) - data.getValue(rowNum, 1)) / data.getValue(rowNum, 2) * 101) // make sure the math.round will get 100
14
15
function CRTooltip(data, rowNum){
16
return '<p id="first_tooltip" class="google-visualization-tooltip-item"><strong>Estimated CR:</strong> ' + data.getValue(rowNum,1) + ' days<br/><strong>Total project:</strong> ' + data.getValue(rowNum, 2) + ' days<br/><strong>Time entries:</strong> ' + data.getValue(rowNum, 0) + ' days</p>'
0 commit comments