|
|
@ -478,8 +478,11 @@ LineGraph.prototype._updateAllGroupData = function () { |
|
|
|
this._onRemoveGroups([groupId]); |
|
|
|
} |
|
|
|
} else { |
|
|
|
var group = this.groupsData.get(groupId); |
|
|
|
if (group === undefined) { |
|
|
|
var group = undefined; |
|
|
|
if (this.groupsData != undefined) { |
|
|
|
group = this.groupsData.get(groupId); |
|
|
|
} |
|
|
|
if (group == undefined) { |
|
|
|
group = {id: groupId, content: this.options.defaultGroup + groupId}; |
|
|
|
} |
|
|
|
this._updateGroup(group, groupId); |
|
|
|