js vm报错_使用morris时出现js报错VM9763:10 Error: <text> attribute transform: Expected number, "matrix(NaN,NaN...

Thank you for your solution heyGalen !

I am having the same error :

Error: Invalid value for attribute transform="matrix(NaN,NaN,NaN,NaN,0,0)"

And I am also not familiar with the source code of Morris.

Although your solution did not work for me, I changed it a little, and now everything works for me, thanks.

Morris.Donut.prototype.resizeHandler = function () {

this.timeoutId = null;

if (this.el && this.el.width() > 0 && this.el.height() > 0) {

this.raphael.setSize(this.el.width(), this.el.height());

return this.redraw();

}

else return null;

};

Morris.Donut.prototype.setData = function (data) {

var row;

this.data = data;

this.values = (function () {

var _i, _len, _ref, _results;

_ref = this.data;

_results = [];

for (_i = 0, _len = _ref.length; _i < _len; _i++) {

row = _ref[_i];

_results.push(parseFloat(row.value));

}

return _results;

}).call(this);

if (this.el && this.el.width() > 0 && this.el.height() > 0) {

return this.redraw();

}

else return null;

};

BTW, morris.js is awesome :)

Hello there, for me the error was elsewhere, as part of the "setLabels" handler. The fix was to handle the case where "text1" or "text2" were NaN:

Morris.Donut.prototype.setLabels = function(label1, label2) {

var inner, maxHeightBottom, maxHeightTop, maxWidth, text1bbox, text1scale, text2bbox, text2scale;

inner = (Math.min(this.el.width() / 2, this.el.height() / 2) - 10) * 2 / 3;

maxWidth = 1.8 * inner;

maxHeightTop = inner / 2;

maxHeightBottom = inner / 3;

this.text1.attr({

text: label1,

transform: ''

});

text1bbox = this.text1.getBBox();

text1scale = Math.min(maxWidth / text1bbox.width, maxHeightTop / text1bbox.height);

if (isNaN(text1scale) || text1scale == "-Infinity") {

text1scale = "0.0";

}

this.text1.attr({

transform: "S" + text1scale + "," + text1scale + "," + (text1bbox.x + text1bbox.width / 2) + "," + (text1bbox.y + text1bbox.height)

});

this.text2.attr({

text: label2,

transform: ''

});

text2bbox = this.text2.getBBox();

text2scale = Math.min(maxWidth / text2bbox.width, maxHeightBottom / text2bbox.height);

if (isNaN(text2scale) || text2scale == "-Infinity") {

text2scale = "0.0";

}

var t = {

transform: "S" + text2scale + "," + text2scale + "," + (text2bbox.x + text2bbox.width / 2) + "," + text2bbox.y

};

return this.text2.attr(t);

};

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值