gpt4 book ai didi

javascript - Highcharts 不会在我的 MVC4 .NET 项目中呈现

转载 作者:行者123 更新时间:2023-11-28 00:47:14 25 4
gpt4 key购买 nike

我正在尝试让 Highcharts 在我的项目中工作。在 Notepad++ 中运行代码时,它可以工作,但是当将相同的代码插入我的 .NET MVC4 项目时,它不会呈现任何内容。

代码如下:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script type="text/javascript">
$(function () {
$('#container').highcharts({
chart: {
plotBackgroundColor: null,
plotBorderWidth: 1,//null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2014'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>'
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
format: '<b>{point.name}</b>: {point.percentage:.1f} %',
style: {
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
}
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
data: [
['Firefox', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
sliced: true,
selected: true
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]
});
});
</script>

chrome 返回以下错误消息:

Picture of the error message

虽然 Firefox 说:

TypeError: $(...).highcharts is not a function

有人知道为什么它不会渲染吗?

最佳答案

我在这里找到了解决方案:Uncaught TypeError: undefined is not a function - Highcharts - MVC

我更改了以下代码:

 $(function () {
$('#container').highcharts({
title: {
text: 'Monthly Average Temperature',
x: -20 //center
},
// rest of code omitted

至以下内容:

$(function () {
Chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},

title: {
text: 'Monthly Average Temperature',
x: -20 //center
},
//rest of code omitted

现在一切正常了:)

关于javascript - Highcharts 不会在我的 MVC4 .NET 项目中呈现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27227408/

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