在D3中解析堆积区域图表的数组

时间:2017-06-27 17:28:04

标签: javascript arrays parsing typescript d3.js

我正在尝试修改示例堆积区域图here

目前它给我一个错误:

Error: <path> attribute d: Expected number, "MNaN,22770LNaN,21…".

在这一行:.attr('d', area);

到目前为止,这是我的代码:

let margin = {top: 20, right: 60, bottom: 30, left: 60},
        width = 960 - margin.left - margin.right,
        height = 500 - margin.top - margin.bottom;

    let parseDate = d3.timeParse('%m/%d/%Y');

    let x = d3.scaleTime().range([0, width]),
        y = d3.scaleLinear()
            .range([height, 0]),
        z = d3.scaleOrdinal()
        .domain(['Detractors', 'Passives' , 'Promoters'])
        .range(['#e81123', '#a0a1a2', '#7fba00']);

    let stack = d3.stack();

    let area = d3.area()
        .x(function(d) { return x(d.data.date); })
        .y0(function(d) { return y(d.y0); })
        .y1(function(d) { return y(d.y0 + d.y); });

    let g = this._svg.append('g')
        .attr('transform', 'translate(' + 0 + ',' + margin.top + ')');

    let data = [
                { 'date': '04/23/12' , 'Detractors': 20 , 'Passives': 30 , 'Promoters': 50 },
                { 'date': '04/24/12' , 'Detractors': 32 , 'Passives': 19 , 'Promoters': 42 },
                { 'date': '04/25/12' , 'Detractors': 45 , 'Passives': 11 , 'Promoters': 44 },
                { 'date': '04/26/12' , 'Detractors': 20 , 'Passives': 13 , 'Promoters': 64 }];

    // console.log(myData.map(function (d) { return d.key; }));

    // console.log('KEYS: '+ keys);

    x.domain(d3.extent(data, function(d) {
        console.log(parseDate(d.date));
        return parseDate(d.date); }));
    // let keys = (d3.keys(data[0]).filter(function (key) { return key !== 'date'; }));
    z.domain(d3.keys(data[0]).filter(function (key) { return key !== 'date'; }));
    // z.domain(keys);
    stack.keys(d3.keys(data[0]).filter(function (key) { return key !== 'date'; }));

    let layer = g.selectAll('.layer')
        .data(stack(data))
        .enter().append('g')
        .attr('class', 'layer');

    layer.append('path')
        .attr('class', 'area')
        .style('fill', function(d) {
            // console.log('d.key: ' + d.key);
            console.log('d.key: ' + d.key +  ' color: ' + z(d.key));
            return z(d.key); })
        .attr('d', area);

    layer.filter(function(d) { return d[d.length - 1][1] - d[d.length - 1][0] > 0.01; })
        .append('text')
        .attr('x', width - 6)
        .attr('y', function(d) { return y((d[d.length - 1][0] + d[d.length - 1][1]) / 2); })
        .attr('dy', '.35em')
        .style('font', '10px sans-serif')
        .style('text-anchor', 'end')
        .text(function(d) {
            // console.log('key label: ' + d.key);
            return d.key; });


    g.append('g')
        .attr('class', 'axis axis--x')
        .attr('transform', 'translate(0,' + height + ')')
        .call(d3.axisBottom(x));

        // console.log(height);
    g.append('g')
        .attr('class', 'axis axis--y')
        .call(d3.axisLeft(y).ticks(5, '%'));

    }

我只是想解析数组,所以我可以正确地解析日期,键和值。我似乎无法做对。

非常感谢帮助!!

1 个答案:

答案 0 :(得分:0)

您获得的具体错误是由于数据中日期的格式。您的代码中注释了一行:$new_var->whereIn('pages',[1762])->pluck('pages') 您确实希望使用d3.timeParse函数将数据转换为日期格式:

let parseDate = d3.timeParse("%m/%d/%Y");