如何使用nodejs,d3和jsdom修改基于svg的dom的内容?

时间:2017-08-01 09:01:08

标签: node.js d3.js svg jsdom

我正在尝试使用nodejs,jsdom和d3 v4组装和托管svg。 我写了updated version this example,因为它不能正常工作。但是,我必须手动设置关闭svg标记,因为我不知道如何使用d3在svg体内添加路径。

如何使用d3在svg内的示例中附加最后一个路径?

更新1

updated version的这一部分设法构建了svg的主要部分。附加所有内容后,第二部分尝试添加路径数据不成功,因为数据被追加到结束的svg标记之外:

var document = jsdom.jsdom();
var svg = d3.select(document.body)

svg.append('svg')
    .attr('xmlns', 'http://www.w3.org/2000/svg')
    .attr('xmlns:xlink', 'http://www.w3.org/1999/xlink')
    .attr('width', width + pad.l + pad.r)
    .attr('height', height + pad.t + pad.b)
    .append('g')
    .attr('transform', 'translate(' + pad.l + ',' + pad.t + ')')
    .append('g')
    .attr('class', 'x axis')
    .call(xAxis)
    .append('g')
    .attr('class', 'y axis')
    .call(yAxis)
    .selectAll('.axis text')
    .style('fill', '#888')
    .style('font-family', 'Helvetica Neue')
    .style('font-size', 11)
    .selectAll('.axis line')
    .style('stroke', '#eee')
    .style('stroke-width', 1)
    .selectAll('.domain')
    .style('display', 'none')

svg.selectAll('path.samples')
    .data([samples])
    .enter()
    .append('path')
    .attr('class', 'samples')
    .attr('d', line)
    .style('fill', 'none')
    .style('stroke', '#c00')
    .style('stroke-width', 2)

1 个答案:

答案 0 :(得分:0)

您必须将您的选择分开

var document = jsdom.jsdom();
var body = d3.select(document.body)

var svg = body .append('svg')
    .attr('xmlns', 'http://www.w3.org/2000/svg')
    .attr('xmlns:xlink', 'http://www.w3.org/1999/xlink')
    .attr('width', width + pad.l + pad.r)
    .attr('height', height + pad.t + pad.b)

 // now we appending g element to the svg

   var g = svg
        .append('g')
        .attr('transform', 'translate(' + pad.l + ',' + pad.t + ')')

   //now we are appending container for x axis inside g
        g.append('g')
        .attr('class', 'x axis')
        .call(xAxis)

    //now we are appending container for y axis inside g
        g
        .append('g')
        .attr('class', 'y axis')
        .call(yAxis)


  // now we are styling appended axis texts inside svg
        svg.selectAll('.axis text')
        .style('fill', '#888')
        .style('font-family', 'Helvetica Neue')
        .style('font-size', 11)

  // now we are styling all ticks inside svg
        svg.selectAll('.axis line')
        .style('stroke', '#eee')
        .style('stroke-width', 1)

 // now we are styling both line inside svg again ()
        svg.selectAll('.domain')
        .style('display', 'none')


  // now we are appending paths to the svg




    svg.selectAll('path.samples')
        .data([samples])  //  if samples is array and you want to bind each element to the path, then [ ] this brackets is redundant here
        .enter()
        .append('path')
        .attr('class', 'samples')
        .attr('d', line)
        .style('fill', 'none')
        .style('stroke', '#c00')
        .style('stroke-width', 2)