2016-03-31 8 views
1

私はこのサイトを初めて利用しており、オンラインでコードについての質問をしています。phpファイルにリンクしているD3コードがWebページのテキストとして実際のコードを出力します

私はPHPを使用して私のデータベースから来る日付とTCPアップロード情報を使用して簡単なグラフを出力するためにd3コードを使用しようとしています。私はjsonデータを正しく出力できますが、htmlファイルを実行しようとするたびに、コードをテキストとして出力し、グラフを出力しません。私は、さまざまなソリューションを探してみましたが、何も動作していないようです。私はaptanaからクラウド9への切り替えにさえも、何もグラフを出力しないようです。私はd3コードまたはd3ライブラリへのリンクで何かをしなければならないかもしれないと感じていますが、私は完全に失われています。ここに私のhtmlコードです:

<!DOCTYPE html> 
<meta charset="utf-8"> 
<html lang="en"> 
<style> /* set the CSS */ 

body { font: 12px Arial;} 

path { 
    stroke: steelblue; 
    stroke-width: 2; 
    fill: none; 
} 

.axis path, 
.axis line { 
    fill: none; 
    stroke: grey; 
    stroke-width: 1; 
    shape-rendering: crispEdges; 
} 

</style> 
<body> 

<!-- load the d3.js library -->  
<script src="http://d3js.org/d3.v3.min.js"></script> 


// 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.TCP_UP); }); 

// 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 + ")"); 


    d3.json("capstone/connection.php", function(error, data) { 
    data.forEach(function(d) { 
    d.Date = parseDate(d.Date); 
    d.TCP_UP = +d.TCP_UP; 
}); 

// 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.TCP_UP; })]); 

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

//}); 

</script> 
</body> 
</html> 

そしてそれは、このコードhereをオフに基づいています。

hereの例では、私は単にdata.cvsファイルを自分のphpファイルに切り替えることになっていたので、それも問題であるかどうかはわかりません。ありがとう!もう情報が必要な場合はお知らせください。

答えて

1

まあ、スクリプトコードを開くのを忘れた。 d3をロードするコードとスクリプトタグの間に<script>タグを置きます。

+0

私の愚かな間違いをキャッチするためにありがとう!私はそれらでいっぱいです。 – alex12555

+0

ああ、私たちは皆、時々それらを作る – redelschaap

関連する問題