我正在尝试使用http://www.highcharts.com/plugin-registry/single/11/Grouped-Categories
我尝试在groups-categories.js中包含一个严格模式,如下所示
(function() {
"use strict";
jQuery.myNamespace.declare("viz.thirdparty.plugins.grouped_categories-master.grouped-categories");
// existing plugin code goes here
}());
虽然插件在使用非严格模式时正确呈现图表,但当我尝试与此模式一起使用时,它会抛出以下异常。
TypeError: Cannot assign to read only property 'parent' of Accessories
at buildTree (plugins/grouped_categories-master/grouped-categories.js:90:18)
at buildTree
清除此错误的任何方法?