gpt4 book ai didi

javascript - 功能未正确绘制 + 化妆品问题 d3js

转载 作者:行者123 更新时间:2023-11-30 16:27:23 24 4
gpt4 key购买 nike

我有两个问题。我正在尝试使用 d3.js 绘制一个函数。我已经走了很远,但我有两个问题。

我目前的代码; https://jsfiddle.net/v0du66ey/

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

body {
font: 10px sans-serif;
}

.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}

.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}

.grid .tick {
stroke: lightgrey;
opacity: 0.7;
}

.grid path {
stroke-width: 0;
}

</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>

var margin = {top: 20, right: 20, bottom: 50, left: 50},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom,
padding = 50;

var x = d3.scale.linear()
.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 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 = [];

for (var k = 0; k < 100; k++) {
data.push({x: k, y: k});
}

var line = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
.interpolate("linear");

// Define x domain
x.domain([-10, 10]);

// Define y domain
y.domain([-10, 10]);

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

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

// Add x grid
svg.append("g")
.attr("class","grid")
.attr("transform","translate(0," + height + ")")
.call(xAxis
.tickSize(-height,-height,0)
.tickFormat("")
);

// Add y grid
svg.append("g")
.attr("class","grid")
.call(yAxis
.tickSize(-width,-width,0)
.tickFormat("")
);

// Add x axis label
svg.append("text")
.attr("transform", "translate(" + (width / 2) + "," + (height + margin.bottom) + ")")
.style("font-size","15")
.style("text-anchor", "middle")
.text("x axis");

// Add y axis label
svg.append("text")
.attr("transform", "rotate(-90)")
.attr("y",0 - margin.left)
.attr("x",0 - (height / 2))
.attr("dy", "1em")
.style("font-size","15")
.style("text-anchor", "middle")
.text("y axis");

svg.append("path")
.attr("class", "line")
.attr("d",line(data));

</script>

如您所见,我定义的函数 y = x。未沿其整个域正确绘制。 x 从 -10 到大约 2.5,y 从 10 到大约 7.5。这里出了什么问题?我没有看到它。

此外,我还有一个美容问题。我试图在轴上的整个图周围创建一个边框,并试图让刻度条指向图形的内部而不是外部。换句话说,我想让它看起来更像一个 Matlab 图,enter image description here

最佳答案

关于外观问题:您需要在坐标轴上设置 innerTickSize()outerTickSize()tickPadding() 为负数.

关于主要问题:就您的比例而言,您应该将线的 x 和 y 数据设置为比例函数的结果。

因此您的行代码将如下所示:

var line = d3.svg.line()
.x(函数(d) { 返回 x(d.x); })
.y(函数(d) { 返回 y(d.y); })
.interpolate("线性");

这是带有更新示例的 jsfiddle http://jsfiddle.net/n3Lndkum/

关于javascript - 功能未正确绘制 + 化妆品问题 d3js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33905754/

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