Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/xml/15.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 使用XML在D3中创建线图_Javascript_Xml_D3.js - Fatal编程技术网

Javascript 使用XML在D3中创建线图

Javascript 使用XML在D3中创建线图,javascript,xml,d3.js,Javascript,Xml,D3.js,我正在尝试使用D3创建一个折线图。图形的数据存储在XML文件中,如下所示: XML代码: <record> <date_value>1376092800000</date_value> </record> var record=xmlDoc.getElementsByTagName("record"); // Set the dimensions of the canvas / graph var margin = {top: 30,

我正在尝试使用D3创建一个折线图。图形的数据存储在XML文件中,如下所示:

XML代码:

<record>
    <date_value>1376092800000</date_value>
</record>
var record=xmlDoc.getElementsByTagName("record");

// 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;

// Parse the date / time
var parseDate = d3.time.format("%d-%b-%y").parse;

// 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.date); })
    .y(function(d) { return y(d.close); });

// 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.xml("values.xml", "application/xml", function(data) {
    for(var d = 0; d < record.length; d++){
        d.date = parseDate(record[d].getElementsByTagName("date_value")[0].childNodes[0].nodeValue);
        d.close += 1;
};

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

    // Add the valueline path.
    svg.append("path")  
        .attr("class", "line")
        .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);

});

1376092800000
JavaScript代码:

<record>
    <date_value>1376092800000</date_value>
</record>
var record=xmlDoc.getElementsByTagName("record");

// 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;

// Parse the date / time
var parseDate = d3.time.format("%d-%b-%y").parse;

// 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.date); })
    .y(function(d) { return y(d.close); });

// 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.xml("values.xml", "application/xml", function(data) {
    for(var d = 0; d < record.length; d++){
        d.date = parseDate(record[d].getElementsByTagName("date_value")[0].childNodes[0].nodeValue);
        d.close += 1;
};

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

    // Add the valueline path.
    svg.append("path")  
        .attr("class", "line")
        .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);

});
var-record=xmlDoc.getElementsByTagName(“记录”);
//设置画布/图形的尺寸
var margin={顶部:30,右侧:20,底部:30,左侧:50},
宽度=600-边距。左侧-边距。右侧,
高度=270-margin.top-margin.bottom;
//解析日期/时间
var parseDate=d3.time.format(“%d-%b-%y”).parse;
//设定范围
var x=d3.time.scale().range([0,width]);
变量y=d3.scale.linear().range([height,0]);
//定义轴
var xAxis=d3.svg.axis().scale(x)
.方向(“底部”)。刻度(5);
var yAxis=d3.svg.axis().scale(y)
.方向(“左”)。勾号(5);
//界定界线
var valueline=d3.svg.line()
.x(函数(d){返回x(d.date);})
.y(函数(d){返回y(d.close);});
//添加svg画布
var svg=d3.选择(“主体”)
.append(“svg”)
.attr(“宽度”,宽度+边距。左侧+边距。右侧)
.attr(“高度”,高度+边距。顶部+边距。底部)
.附加(“g”)
.attr(“转换”、“平移”(+margin.left+)、“+margin.top+”);
//获取数据
xml(“values.xml”、“application/xml”、函数(数据){
对于(var d=0;d

我在获取数据的部分遇到了问题。x值为日期值,y值应每增加一次。对于当前代码,我没有错误,但只有y轴显示,没有数据。如果有任何建议,我将不胜感激。谢谢

你想用for循环实现什么?当前,您只需修改
d
,然后立即覆盖它。似乎这是个错误。@Mike我正在尝试逐步检查XML文件中的记录数,但我还需要传入
d
。再看一看,我明白你的意思了,我声明了一个我刚刚覆盖的值,所以我需要一种方法来传入
d
并逐步通过for循环。另外,
data.forEach(函数(d)
也不起作用。