如何使用d3.js绘制折线图?

时间:2014-04-06 18:36:05

标签: javascript graph d3.js line tsv

我是d3.js的新手,我试图在同一个地块上绘制三条线。我正在读取一个包含四列的tsv文件:time,x,y和z。这是加速度计数据。我想绘制x,y,z列与时间的关系,但似乎无法得到它。有什么建议?

    function graph(){

// Set the dimensions of the canvas / graph
var margin = {top: 30, right: 20, bottom: 30, left: 50},
    width = 600 - margin.left - margin.right,
    height = 270 - margin.top - margin.bottom;

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

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

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

// Define the line
var valueline = d3.svg.line()
    .x(function(d) { return x(d.time); })
    .y(function(d) { return y(d.x); });

var     valueline2 = d3.svg.line()
        .x(function(d) { return x(d.time); })
        .y(function(d) { return y(d.y); })

var     valueline3 = d3.svg.line()
        .x(function(d) { return x(d.time); })
        .y(function(d) { return y(d.z); });

// Adds the svg canvas
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 + ")");

// Get the data
d3.tsv("data/data2.tsv", function(error, data) {
    data.forEach(function(d) {
        d.time = +d.time;
        d.x = +d.x;
                d.y = +d.y;
                d.z = +d.z;
    });

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

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

        svg.append("path")      // Add the valueline path.
        .attr("class", "line")
                .style("stroke", "red")
        .attr("d", valueline2(data));

        svg.append("path")      // Add the valueline path.
        .attr("class", "line")
                .style("stroke", "green")
        .attr("d", valueline3(data));

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

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

});}

1 个答案:

答案 0 :(得分:1)

您可以将每一行一次添加到画布,但它不是非常d3或高效。以适当的方式组织数据要好得多。因此,主要问题是数据的准备方式。在Lar的指向数据的示例中,使用此代码块嵌套数据:

var series = color.domain().map(function(name) {
    return {
        name: name,
        values: data.map(function(d) {
            return {
                time: d.time,
                score: +d[name]
            };
        })
    };
});

这样做是为了创建一个包含3个对象的数组。每个对象都有一个键值对:name和 数组。在每个数组中是另一个对象,其中包含用于绘图的时间和分数信息。它是传递给行生成器的最后一个对象数组。

我创造了一个小提琴,here,这很大程度上基于Lar指出的例子而且它在整个过程中都有评论。这个阶段的技巧是检查元素并使用console.log

祝你好运。