Fixed problems with labels in gauges

This commit is contained in:
m-lopez-f 2015-12-01 09:55:51 +01:00
parent 25aa41ae7a
commit 6079ba3005
1 changed files with 1 additions and 1 deletions

View File

@ -935,7 +935,7 @@ function createGauges(data, width, height, font_size, no_data_image)
for (key in data) {
nombre = data[key].gauge;
label = undefined != data[key].label ? data[key].label : data[key].nombre;
label = data[key].label;
label = label.replace(/ /g,' ');
label = label.replace(/\(/g,'\(');