gpt4 book ai didi

javascript - NVD3.js 离散条形图

转载 作者:太空宇宙 更新时间:2023-11-03 23:04:55 26 4
gpt4 key购买 nike

我正在尝试 http://nvd3.org/examples/discreteBar.html 中给出的示例我正在使用 http://nvd3.org/index.html 中给出的 css 和 js 文件在入门下。

这是我的代码。

chartTest1.html

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My First Chart</title>
<link href="nv.d3.css" rel="stylesheet" type="text/css">
<script src="d3.min.js"></script>
<script src="nv.d3.min.js"></script>
</head>
<body>
<svg style='height:600px'/>

<script src="myChart.js"></script>
</body>
</html>

myChart.js

nv.addGraph(function() {
var chart = nv.models.discreteBarChart()
.x(function(d) { return d.label }) //Specify the data accessors.
.y(function(d) { return d.value })
.staggerLabels(true) //Too many bars and not enough room? Try staggering labels.
.tooltips(false) //Don't show tooltips
.showValues(true) //...instead, show the bar value right on top of each bar.
.transitionDuration(350)
;

d3.select('#chart svg')
.datum(exampleData())
.call(chart);

nv.utils.windowResize(chart.update);

return chart;
});

//Each bar represents a single discrete quantity.
function exampleData() {
return [
{
key: "Cumulative Return",
values: [
{
"label" : "A Label" ,
"value" : -29.765957771107
} ,
{
"label" : "B Label" ,
"value" : 0
} ,
{
"label" : "C Label" ,
"value" : 32.807804682612
} ,
{
"label" : "D Label" ,
"value" : 196.45946739256
} ,
{
"label" : "E Label" ,
"value" : 0.19434030906893
} ,
{
"label" : "F Label" ,
"value" : -98.079782601442
} ,
{
"label" : "G Label" ,
"value" : -13.925743130903
} ,
{
"label" : "H Label" ,
"value" : -5.1387322875705
}
]
}
]

}

但它给出了以下错误。

enter image description here

如何解决这个问题?

最佳答案

.transitionDuration() 函数于 2013 年 8 月推出,仅五个月后就被弃用。它已被转发到 chart.duration()

.transitionDuration() 只会添加属性 transitionDuration,它不会造成任何伤害,也不会抛出任何错误,因为它是未知的,但也不会产生任何影响。需要改为duration才能达到预期的效果。

http://nvd3-community.github.io/nvd3/examples/documentation.html#discreteBarChart

d3.select('#chart svg')
.datum(data)
.transition().duration(500)
.call(chart)
;

关于javascript - NVD3.js 离散条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35059290/

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