gpt4 book ai didi

Javascript D3 图形对图形和轴进行排序

转载 作者:行者123 更新时间:2023-11-29 21:39:46 25 4
gpt4 key购买 nike

请原谅,因为我是使用 D3 图表的新手。即使在排序之后,我似乎也遇到了图形以非常奇怪/横向的方式出现的问题。我正在尝试显示一个图表,显示两个值之间的上升趋势。数组中的值如下所示:[[200, 4.232660756790275], [300, 5.206851570440669], [400, 4.459431618637297]] 其中第一个值表示在 Y 轴上,第二个值表示在 X 轴上。下面是代码。难道我做错了什么?请指教,谢谢。

<!DOCTYPE html>
<meta charset="utf-8">
<style>

body {
font: 12px Arial;
}

text.shadow {
stroke: #fff;
stroke-width: 2.5px;
opacity: 0.9;
}

path {
stroke: steelblue;
stroke-width: 2;
fill: none;
}

.axis path,
.axis line {
fill: none;
stroke: grey;
stroke-width: 1;
shape-rendering: crispEdges;
}

.grid .tick {
stroke: lightgrey;
stroke-opacity: 0.7;
shape-rendering: crispEdges;
}
.grid path {
stroke-width: 0;
}

.area {
fill: lightsteelblue;
stroke-width: 0;
}

</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<script>

var margin = {top: 30, right: 20, bottom: 35, left: 50},
width = 600 - margin.left - margin.right,
height = 270 - margin.top - margin.bottom;

//var parseDate = d3.time.format("%d-%b-%y").parse;
var arrData = JSON.parse(window.localStorage.getItem("graphArray"));

var x = d3.time.scale().range([0, width]);
var y = d3.scale.linear().range([height, 0]);

var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(5);

var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(5);

var area = d3.svg.area()
.x(function(d) { return x(d.idd); })
.y0(height)
.y1(function(d) { return y(d.timing); });

var valueline = d3.svg.line()
.x(function(d) { return x(d.idd); })
.y(function(d) { return y(d.timing); });

var svg = d3.select("body")
.append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");


var data = arrData.map(function(d) {
return {

idd: d[1],
timing: d[0]

};

});

console.log(data);

// function for the x grid lines
function make_x_axis() {
return d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(5)
}

// function for the y grid lines
function make_y_axis() {
return d3.svg.axis()
.scale(y)
.orient("left")
.ticks(5)
}

// Scale the range of the data
x.domain(d3.extent(data, function(d) { return d.idd; }));
y.domain([0, d3.max(data, function(d) { return d.timing; })]);

// Add the filled area
svg.append("path")
.datum(data)
.attr("class", "area")
.attr("d", area);

// Draw the x Grid lines
svg.append("g")
.attr("class", "grid")
.attr("transform", "translate(0," + height + ")")
.call(make_x_axis()
.tickSize(-height, 0, 0)
.tickFormat("")
)

// Draw the y Grid lines
svg.append("g")
.attr("class", "grid")
.call(make_y_axis()
.tickSize(-width, 0, 0)
.tickFormat("")
)

// Add the valueline path.
svg.append("path")
.attr("d", valueline(data));

// Add the X Axis
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);

// Add the Y Axis
svg.append("g")
.attr("class", "y axis")
.call(yAxis);

// Add the text label for the X axis
svg.append("text")
.attr("transform",
"translate(" + (width/2) + " ," +
(height+margin.bottom) + ")")
.style("text-anchor", "middle")
.text("Index of Difficulty");

// Add the white background to the y axis label for legibility
svg.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("x", margin.top - (height / 2))
.attr("dy", ".71em")
.style("text-anchor", "end")
.attr("class", "shadow")
.text("Price ($)");

// Add the text label for the Y axis
svg.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("x", margin.top - (height / 2))
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Time (ms)");

// Add the title
svg.append("text")
.attr("x", (width / 2))
.attr("y", 0 - (margin.top / 2))
.attr("text-anchor", "middle")
.style("font-size", "16px")
.style("text-decoration", "underline")
.text("Fitts' Law");


</script>
</body>

以及从数组中传入数据后图形的样子:另外,我想知道如何更改 X 轴的文本,因为它似乎不在检索到的值范围内。

enter image description here

最佳答案

不明白为什么要将x轴定义为时间刻度。

var x = d3.time.scale().range([0, width]);

只是通过读取变量,它似乎是一些 id

本应如此

var x = d3.scale.linear().range([0, width]);

下图是正确的数据是这个顺序

 [[200, 4.232660756790275], [300, 5.206851570440669], [400, 4.459431618637297]];

所以它首先进入 4.3,然后进入 5.2,然后回到 4.4,这就是为什么它像问题中显示的图像一样出现的原因。

我建议您像下面这样对数据进行排序,这样现在的顺序是 4.23 然后是 4.45 然后是 5.20 ...

data.sort(function(a, b) {
return a.idd - b.idd;
});

这将使图形成为您想要的样子:)

工作代码 here

希望这对您有所帮助!

关于Javascript D3 图形对图形和轴进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33459990/

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