parent
6c0daf3c3e
commit
5e9cc49ef4
1 changed files with 5 additions and 1 deletions
|
|
@ -78,7 +78,11 @@ $(function() {
|
||||||
var options = {};
|
var options = {};
|
||||||
options.fillColor = "rgba(255,255,255,0.0)";
|
options.fillColor = "rgba(255,255,255,0.0)";
|
||||||
options.strokeColor = conferences[i].color;
|
options.strokeColor = conferences[i].color;
|
||||||
options.data = chart_data[conferences[i].short_title];
|
if(options.data == null || options.data.length == 0){
|
||||||
|
options.data = [0];
|
||||||
|
}else{
|
||||||
|
options.data = chart_data[conferences[i].short_title];
|
||||||
|
}
|
||||||
result.push(options)
|
result.push(options)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue