Hi
I was having same issues - after trying several approaches, much
searching, grEvenX's fix (repeated below) from
http://extjs.com/forum/archive/index.php/t-5742.html
fixed it for me (Mochikit 1.4, plotkit-0.9.1)
- replace PlotKit.Base.items function:
// OLD CODE
PlotKit.Base.items = function(lst) {
if (PlotKit.Base.usingPrototype()) {
var rval = [];
for (var x in lst) {
if (typeof(lst[x]) == 'function') continue;
rval.push([x, lst[x]]);
}
return rval;
}
else {
return MochiKit.Base.items(lst);
}
};
section around line 260 in PlotKit/Base.js with:
// NEW CODE
PlotKit.Base.items = function(lst) {
var rval = [];
for (var x in lst) {
if (typeof(lst[x]) == 'function') continue;
if (lst[x] == '______array') continue;
rval.push([x, lst[x]]);
}
return rval;
}