#11995 Prevent breaked graphics
This commit is contained in:
parent
0dc2a3492d
commit
02e2903b37
|
@ -2223,6 +2223,9 @@ function pandoraFlotArea(
|
|||
}
|
||||
|
||||
var dataInSelection = ranges.xaxis.to - ranges.xaxis.from;
|
||||
if (dataInSelection < 35000) {
|
||||
return;
|
||||
}
|
||||
|
||||
var maxticks_zoom = dataInSelection / 3600000 / number_ticks;
|
||||
if (maxticks_zoom < 0.001) {
|
||||
|
|
|
@ -6646,6 +6646,7 @@ table.table_modal_alternate tr td:first-child {
|
|||
white-space: normal;
|
||||
word-break: break-all;
|
||||
line-height: 1.3;
|
||||
max-width: 40px !important;
|
||||
}
|
||||
|
||||
table#agent_interface_info .flot-text .flot-x-axis div {
|
||||
|
|
Loading…
Reference in New Issue