gpt4 book ai didi

javascript - Jqplot - 无法读取未定义的属性 'startAngle'

转载 作者:行者123 更新时间:2023-11-28 03:27:59 27 4
gpt4 key购买 nike

我正在尝试通过 Laravel 中的 jqPlot 插件显示饼图。Jqplot 脚本使用 laravel mix 编译到主 app.js 文件中。

我遇到的错误:

jQuery.Deferred exception:
Cannot read property 'startAngle' of undefined TypeError: Cannot read property 'startAngle' of undefined (at doDraw)



doDraw 函数(来自 app.js):

function doDraw(rad) {
// Fix for IE and Chrome that can't seem to draw circles correctly.
// ang2 should always be <= 2 pi since that is the way the data is converted.
// 2Pi = 6.2831853, Pi = 3.1415927
if (ang2 > 6.282 + this.startAngle) { **it fails on this if statement**
ang2 = 6.282 + this.startAngle;
if (ang1 > ang2) {
ang1 = 6.281 + this.startAngle;
}
}
// Fix for IE, where it can't seem to handle 0 degree angles. Also avoids
// ugly line on unfilled pies.
if (ang1 >= ang2) {
return;
}

ctx.beginPath();
ctx.fillStyle = color;
ctx.strokeStyle = color;
ctx.lineWidth = lineWidth;
ctx.arc(0, 0, rad, ang1, ang2, false);
ctx.lineTo(0, 0);
ctx.closePath();

if (fill) {
ctx.fill();
} else {
ctx.stroke();
}
}

饼图代码:

<div id="pie_seminar{{ $seminar->id }}" class="piechart"></div>

<script>
var id, plot;
$(document).ready(function () {
id = '{{ $seminar->id }}';
var plot{{ $seminar->id }} = $.jqplot('pie_seminar' + id, [[['Attempted',{{ $statisticResult['incomplete'] }}], ['Completed',{{ $statisticResult['completed'] }}]]], {
gridPadding: {top: 1, right: 1, bottom: 1, left: 1},
grid: {
drawBorder: false,
drawGridlines: false,
background: '#ffffff',
shadow: false
},
seriesDefaults: {
renderer: $.jqplot.PieRenderer,

rendererOptions: {
sliceMargin: 3,
// rotate the starting position of the pie around to 12 o'clock.
startAngle: -90,
showDataLabels: true,
diameter: null,
padding: 8,
margin: 1
},
trendline: {show: false}
},
legend: {
show: false,
},
highlighter: {
tooltipContentEditor: function (str, seriesIndex, pointIndex) {
return str;
},
show: false,
useAxesFormatters: false,
tooltipFormatString: '%s'
},
seriesColors: ["#cccccc", "#aaccff", "#F5811F"]
});
});
</script>

我设法通过手动将脚本导入公共(public)文件夹来显示饼图插件(这不是一种解决方案,因为所有脚本都需要编译到一个文件中),这表明代码应该没问题。

使用 laravel mix 重新编译资源并没有解决问题。代码不断出现 startAngle 未定义错误。我对 jqplot 失去了理智。 这里有什么问题?

最佳答案

由于 app.js 中编译的脚本落在 doDraw 函数处(startAngle 变量无法访问),因此修改 doDraw 函数就可以解决问题。 startAngle变量doDraw函数中全局声明 ,并且在 Blade 模板中也作为 startAngle,以便为每个生成的 jqPlot 饼图全局访问变量。当然,在通过 npm run dev/product 编译 Assets 后。

关于javascript - Jqplot - 无法读取未定义的属性 'startAngle',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58446837/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com