fixed errors

This commit is contained in:
daniel 2018-02-28 10:02:06 +01:00
parent 7b47ea4c32
commit 3910b455ca
2 changed files with 15 additions and 5 deletions

View File

@ -583,6 +583,8 @@ function grafico_modulo_sparse_data(
$series_type['percentil' . $series_suffix] = 'percentil';
$array_events_alerts[$series_suffix] = $events;
$data_module_graph['series_suffix'] = $series_suffix;
}
function grafico_modulo_sparse ($agent_module_id, $period, $show_events,

View File

@ -1144,6 +1144,7 @@ function pandoraFlotArea(
var dashboard = show_elements_graph.dashboard;
var menu = show_elements_graph.menu;
var max_x = date_array['final_date'] *1000;
var s_suffix = data_module_graph['series_suffix'];
//for threshold
var threshold = true;
@ -1192,12 +1193,19 @@ function pandoraFlotArea(
i=0;
$.each(values, function (index, value) {
if (typeof value.data !== "undefined") {
if(index == 'alert') {
console.log(index);
console.log(s_suffix);
if(index == 'alert' + s_suffix) {
console.log('entra');
fill_color = '#ffff00';
}
else if(index == 'events') {
else if(index == 'event' + s_suffix) {
console.log('entra2');
fill_color = '#ff66cc';
}
else{
fill_color = '';
}
switch (series_type[index]) {
case 'area':
line_show = true;
@ -1205,7 +1213,7 @@ function pandoraFlotArea(
filled = 0.2;
steps_chart = false;
radius = false;
fill_points = '';
fill_points = fill_color;
break;
case 'percentil':
case 'line':
@ -1215,7 +1223,7 @@ function pandoraFlotArea(
filled = false;
steps_chart = false;
radius = false;
fill_points = '';
fill_points = fill_color;
break;
case 'points':
line_show = false;
@ -1232,7 +1240,7 @@ function pandoraFlotArea(
filled = true;
steps_chart = true;
radius = false;
fill_points = '';
fill_points = fill_color;
break;
}
data_base.push({