我在一个类上工作,在Web应用程序中制作动态图表。 该应用程序使用引导框架。
我试图将附加内容更改为“DIV”和其他变体等。
id
但图表并没有出现在这些页面中。
这是我的班级:
var svg = d3.select("'.$this->ChartDiv.'").append("div")
要打电话给这个班级我用过这个:
class Chart{
//Public variables:
public $tsvFile;
public $JsonLocation;
public $JS;
public $ChartDiv;
public $Width;
public $Height;
function Set($What, $Value){
$this->$What = $Value;
}
//For json
function BuildJson(){
$DataOut = '
<style>
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.x.axis path {
display: none;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 1.5px;
}
</style>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js" charset="utf-8"></script>
<script type=text/javascript">
var margin = {top: 20, right: 20, bottom: 30, left: 50},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var parseDate = d3.time.format("%d-%b-%Y").parse;
var x = d3.time.scale()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("left");
var line = d3.svg.line()
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d.close); });
var svg = d3.select("'.$this->ChartDiv.'").append("svg:svg")
.attr("width", '.$this->Width.')
.attr("height", '.$this->Height.')
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
d3.json("'.$this->JsonLocation.'", function(error, data) {
data.forEach(function(d) {
d.date = parseDate(d.date);
d.close = +d.close;
});
x.domain(d3.extent(data, function(d) { return d.date; }));
y.domain(d3.extent(data, function(d) { return d.close; }));
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis);
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", ".71em")
.style("text-anchor", "end")
.text("Profit (Millions)");
svg.append("path")
.datum(data)
.attr("class", "line")
.attr("d", line);
});
</script>';
$this->JS = $DataOut;
}
}
基本上,一切都打印在页面内部,当我在一个空的php文件中尝试这个时,它会显示图表。
现在,我不明白我做错了什么,所以任何准则都会有所帮助。
答案 0 :(得分:0)
var svg = d3.select("'.$this->ChartDiv.'").append("svg:svg")
找到ChartDiv元素,向其附加一个SVG元素,并将此SVG元素的D3表示赋给变量svg
。然后使用此svg
变量将元素添加到图表中。
当您将...append("svg:svg")
替换为...append("div")
时,您将内部内容附加到div而不是SVG元素,这是没有意义的,因为g
和{{1} }等只是SVG容器的有效子代。
此外,您需要将您的javascript包装在JQuery的path
之类的内容中,或者确保在已经输出所有必需的HTML之后输出javascript,以便例如$(document).ready(function() { ... })
已经存在