Decreased limit to reduceText call in some graphs

This commit is contained in:
fbsanchez 2018-04-03 16:41:21 +02:00
parent 2b608bf914
commit dcaae924fc
2 changed files with 4 additions and 5 deletions

View File

@ -421,8 +421,8 @@ function pandoraFlotHBars(graph_id, values, labels, water_mark,
// var shortLabel = reduceText(label, 25);
var title = label;
var margin_top = 0;
if(label.length > 33){
label = reduceText(label, 33);
if(label.length > 30){
label = reduceText(label, 30);
}
var div_attributes = 'style="font-size:'+font_size+'pt !important;'
+ ' margin: 0; max-width: 150px;'
@ -432,7 +432,7 @@ function pandoraFlotHBars(graph_id, values, labels, water_mark,
div_attributes += "min-height: 2.5em;";
}
div_attributes += '" title="'+title+'" class="'+font+'"';
div_attributes += '" title="'+title+'" class="'+font+'" '+ ' style="overflow: hidden;"';
format.push([i,'<div ' + div_attributes + '>'
+ label
@ -663,7 +663,7 @@ function pandoraFlotVBars(graph_id, values, labels, labels_long, legend, colors,
}
format.push([i,
'<div class="'+font+'" title="'+title+'" style="word-break: normal; transform: rotate(-45deg); position:relative; top:+30px; left:0px; max-width: 100px;font-size:'+font_size+'pt !important;">'
'<div class="'+font+'" title="'+title+'" style="word-break: normal; overflow:hidden; transform: rotate(-45deg); position:relative; top:+30px; left:0px; max-width: 100px;font-size:'+font_size+'pt !important;">'
+ label
+ '</div>']);
}

View File

@ -4630,7 +4630,6 @@ form ul.form_flex li ul li{
.tickLabel {
white-space: nowrap;
overflow-x: hidden;
line-height: 1.05em!important;
}