- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 this 绘制了一个折线图。这里我做了一些更改。我在 body 标签内放置了一些带有数据的 div。然后我将时间设置为 x 轴,将真/假值设置为 y 轴。我使用正则表达式获得了数据集的时间值。通过查看以下代码,这将很容易理解。当有注释的数据集(在此代码中)时,它很好地被淹没,但是在更改之后它不起作用?请帮助我找出我所犯的错误。
var margin = {top: 20, right: 100, bottom: 30, left: 100},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
//First I test this code with this data set and It worked!!!
/*var dataset = [
{x: '2013-03-12 08:00:04', y: true},
{x: '2013-03-12 08:20:04', y: true},
{x: '2013-03-12 08:29:04', y: false},
{x: '2013-03-12 09:30:04', y: true},
{x: '2013-03-12 09:45:04', y: true},
{x: '2013-03-12 09:55:04', y: true},
{x: '2013-03-12 10:01:04', y: true},
{x: '2013-03-12 10:09:04', y: true},
{x: '2013-03-12 10:25:04', y: true},
{x: '2013-03-12 11:37:04', y: false},
{x: '2013-03-12 12:43:04', y: true},
{x: '2013-03-12 12:59:04', y: true},
{x: '2013-03-12 13:10:04', y: true},
{x: '2013-03-12 13:09:04', y: true},
];*/
/******newest adding code for get data ********/
var dataset = [];
var mainRootID = 1;
var listID,listID_a;
var goThruoughBranch = 1;
var testlistID,testlistID_a;
var findbranch,dataStatement;
var testDate;
var parseDate = d3.time.format("%Y-%m-%d %H:%M:%S").parse;
var interval = setInterval(function() {
listID = mainRootID + '_' + goThruoughBranch;
listID_a = mainRootID + '_' + goThruoughBranch+'_a';
testlistID= document.getElementById(listID);
if(testlistID.childNodes[0].id=="T"){
//alert('come inside to the if : T occur');
testlistID_a = document.getElementById(listID_a);
dataStatement = testlistID_a.innerHTML;
//alert(dataStatement);
testDate = dateCatcher(dataStatement);
//alert(testDate);
dataset.push({
x: parseDate(testDate),
y: true,
testcase: 'TestSuite:'+mainRootID+' test:'+listID
});
//drowLineChart();
}else if(testlistID.childNodes[0].id=="F") {
//alert('come inside to the else if: F occur');
testlistID_a = document.getElementById(listID_a);
dataStatement = testlistID_a.innerHTML;
//alert(dataStatement);
testDate = dateCatcher(dataStatement);
dataset.push({
x: parseDate(testDate),
y: false,
testcase: 'TestSuite:'+mainRootID+' test:'+listID
});
// drowLineChart();
//setDotInLineChart();
}else{
//alert('come inside to the else: start occur');
}
goThruoughBranch++;
if(goThruoughBranch==13){
clearInterval(interval);
}
// alert('dataset.length'+dataset.length);
}, 100);
//Gives the date part from the whole statement
function dateCatcher(statement){
var date_finder =/(\d{4})\-(\d{2})\-(\d{2})\s+(\d{2}):(\d{2}):(\d{2})/;
var datePart = statement.match(date_finder);
datePart[2] -= 1;
var UtcDate = new Date(Date.UTC.apply(this, datePart.slice(1)));
//var dateObj = new Date();
var month = UtcDate.getUTCMonth() + 1; //months from 1-12
var day = UtcDate.getUTCDate();
var year = UtcDate.getUTCFullYear();
var hours = UtcDate.getUTCHours();
var minutes = UtcDate.getUTCMinutes();
var seconds = UtcDate.getUTCSeconds();
var newdate = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
return newdate;
}
/**********************************************************/
var parseDate = d3.time.format("%Y-%m-%d %H:%M:%S").parse;
var xScale = d3.time.scale()
.range([0, width]);
var yScale = d3.scale.ordinal()
.range([0,height]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.innerTickSize(-height)
.outerTickSize(0)
.tickPadding(10)
.tickFormat(d3.time.format("%H:%M:%S"));
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.innerTickSize(-width)
.outerTickSize(0)
.tickPadding(10);
dataset.forEach(function(d) {
d.x = parseDate(d.x);
});
xScale.domain(d3.extent(dataset, function(d) { return d.x; }));
yScale.domain(dataset.map(function(d) {return d.y;} ));
var line = d3.svg.line()
.x(function(d) { return xScale(d.x); })
.y(function(d) { return yScale(d.y); });
var svg = d3.select(".chart3").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 + ")");
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
svg.append("path")
.data([dataset])
.attr("class", "line")
.attr("d", line);
.axis path,
.axis line{
fill: none;
stroke: black;
}
.line{
fill: none;
stroke: blue;
stroke-width: 2px;
}
.tick text{
font-size: 12px;
}
.tick line{
opacity: 0.2;
}
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Line Chart</title>
</head>
<body>
<ul id="ul_11">
<div tabindex="-1" id="1_1"><li id="start"><a id="1_1_a"> 2015-01-02 11:47:50 Test 11 1 Started</a></li></div>
<div tabindex="-1" id="1_2"><li id="T"><a id="1_2_a"> 2015-01-02 11:50:57 Test 11 1 Passed</a></li></div>
<div tabindex="-1" id="1_3"><li id="start"><a id="1_3_a"> 2015-01-02 11:57:20 Test 11 2 Started</a></li></div>
<div tabindex="-1" id="1_4"><li id="T"><a id="1_4_a"> 2015-01-02 12:10:02 Test 11 2 Passed</a></li></div>
<div tabindex="-1" id="1_5"><li id="start"><a id="1_5_a"> 2015-01-02 12:15:14 Test 11 3 Started</a></li></div>
<div tabindex="-1" id="1_6"><li id="F"><a id="1_6_a"> 2015-01-02 12:20:24 Test 11 3 Failed</a></li></div>
<div tabindex="-1" id="1_7"><li id="start"><a id="1_7_a"> 2015-01-02 12:35:12 Test 11 4 Started</a></li></div>
<div tabindex="-1" id="1_8"><li id="F"><a id="1_8_a"> 2015-01-02 12:46:20 Test 11 4 Failed</a></li></div>
<div tabindex="-1" id="1_9"><li id="start"><a id="1_9_a"> 2015-01-02 11:57:10 Test 11 5 Started</a></li></div>
<div tabindex="-1" id="1_10"><li id="T"><a id="1_10_a">2015-01-02 12:00:00 Test 11 5 Passed</a></li></div>
<div tabindex="-1" id="1_11"><li id="start"><a id="1_11_a">2015-01-02 12:12:20 Test 11 6 Started</a></li></div>
<div tabindex="-1" id="1_12"><li id="F"><a id="1_12_a">2015-01-02 12:20:24 Test 11 6 Failed</a></li></div>
</ul>
<div class="chart3"></div>
<script src="http://d3js.org/d3.v3.js"></script>
</body>
</html>
感谢您的帮助...
最佳答案
首先,为什么您的数据解析包含在 setInterval
中(这是某种循环尝试吗?)。绘制图表后,解析将开始(并且数据集
将是一个空数组)。清理它(您当前的解析已损坏),您可以简化:
var parseDate = d3.time.format("%Y-%m-%d %H:%M:%S").parse,
dataset = [],
mainRootID = 1;
// select all lis that have an id or T or F
d3.selectAll('li#T,li#F').each(function() {
// self will be d3 selector with the li
var self = d3.select(this),
// textData is the contents of the a tag
textData = self.select('a').text().replace(/^\s+|\s+$/g, '').split(" "),
// this is the id of lis parent div
listID = d3.select(this.parentNode).attr('id');
dataset.push({
x: parseDate(textData[0] + " " + textData[1]), // parse to date
y: self.attr("id") === "T", // figure out if its t or f
testcase: 'TestSuite:' + mainRootID + ' test:' + listID
});
});
// sort the data
dataset.sort(function(d1,d2){
return d1.x < d2.x;
})
理顺之后,图表又回来了。
完整的工作代码:
<html>
<head>
<title>Line Chart</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.3/d3.js"></script>
<style>
.axis path,
.axis line {
fill: none;
stroke: black;
}
.line {
fill: none;
stroke: blue;
stroke-width: 2px;
}
.tick text {
font-size: 12px;
}
.tick line {
opacity: 0.2;
}
</style>
</head>
<body>
<ul id="ul_11">
<div tabindex="-1" id="1_1">
<li id="start">
<a id="1_1_a"> 2015-01-02 11:47:50 Test 11 1 Started</a>
</li>
</div>
<div tabindex="-1" id="1_2">
<li id="T">
<a id="1_2_a"> 2015-01-02 11:50:57 Test 11 1 Passed</a>
</li>
</div>
<div tabindex="-1" id="1_3">
<li id="start">
<a id="1_3_a"> 2015-01-02 11:57:20 Test 11 2 Started</a>
</li>
</div>
<div tabindex="-1" id="1_4">
<li id="T">
<a id="1_4_a"> 2015-01-02 12:10:02 Test 11 2 Passed</a>
</li>
</div>
<div tabindex="-1" id="1_5">
<li id="start">
<a id="1_5_a"> 2015-01-02 12:15:14 Test 11 3 Started</a>
</li>
</div>
<div tabindex="-1" id="1_6">
<li id="F">
<a id="1_6_a"> 2015-01-02 12:20:24 Test 11 3 Failed</a>
</li>
</div>
<div tabindex="-1" id="1_7">
<li id="start">
<a id="1_7_a"> 2015-01-02 12:35:12 Test 11 4 Started</a>
</li>
</div>
<div tabindex="-1" id="1_8">
<li id="F">
<a id="1_8_a"> 2015-01-02 12:46:20 Test 11 4 Failed</a>
</li>
</div>
<div tabindex="-1" id="1_9">
<li id="start">
<a id="1_9_a"> 2015-01-02 11:57:10 Test 11 5 Started</a>
</li>
</div>
<div tabindex="-1" id="1_10">
<li id="T">
<a id="1_10_a">2015-01-02 12:00:00 Test 11 5 Passed</a>
</li>
</div>
<div tabindex="-1" id="1_11">
<li id="start">
<a id="1_11_a">2015-01-02 12:12:20 Test 11 6 Started</a>
</li>
</div>
<div tabindex="-1" id="1_12">
<li id="F">
<a id="1_12_a">2015-01-02 12:20:24 Test 11 6 Failed</a>
</li>
</div>
</ul>
<div class="chart3"></div>
<script>
/* parse data */
var parseDate = d3.time.format("%Y-%m-%d %H:%M:%S").parse,
dataset = [],
mainRootID = 1;
d3.selectAll('li#T,li#F').each(function() {
var self = d3.select(this),
textData = self.select('a').text().replace(/^\s+|\s+$/g, '').split(" "),
listID = d3.select(this.parentNode).attr('id');
dataset.push({
x: parseDate(textData[0] + " " + textData[1]),
y: self.attr("id") === "T",
testcase: 'TestSuite:' + mainRootID + ' test:' + listID
});
});
// sort the data
dataset.sort(function(d1,d2){
return d1.x < d2.x;
})
/* plot data */
var margin = {
top: 20,
right: 100,
bottom: 30,
left: 100
},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var xScale = d3.time.scale()
.range([0, width]);
var yScale = d3.scale.ordinal()
.range([0, height]);
var xAxis = d3.svg.axis()
.scale(xScale)
.orient("bottom")
.innerTickSize(-height)
.outerTickSize(0)
.tickPadding(10)
.tickFormat(d3.time.format("%H:%M:%S"));
var yAxis = d3.svg.axis()
.scale(yScale)
.orient("left")
.innerTickSize(-width)
.outerTickSize(0)
.tickPadding(10);
xScale.domain(d3.extent(dataset, function(d) {
return d.x;
}));
yScale.domain(dataset.map(function(d) {
return d.y;
}));
var line = d3.svg.line()
.x(function(d) {
return xScale(d.x);
})
.y(function(d) {
return yScale(d.y);
});
var svg = d3.select(".chart3").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 + ")");
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
svg.append("g")
.attr("class", "y axis")
.call(yAxis)
svg.append("path")
.data([dataset])
.attr("class", "line")
.attr("d", line);
</script>
</body>
</html>
关于javascript - D3.js 中的折线图无法正确绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33177232/
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
折线图是一种用于可视化数据变化趋势的图表,它可以用于表示任何数值随着时间或类别的变化。 折线图由折线段和折线交点组成,折线段表示数值随时间或类别的变化趋势,折线交点表示数据的转折点。 折
我是 d3 和 typescript 的新手。 我正在尝试使用 d3 v4 和 typescript 创建一个简单的折线图。 但是,我收到了一个 typescript 错误,如下图所示: 问题是什么?
我是 Qlikview 的新手,经过几次失败的尝试后,我不得不请求一些有关 Qlikview 中图表的指导。我想创建折线图,其中包含: 一维 - 一个月的时间段按天数分割 一个表达式 - 每天创建的任
我正在尝试使用 Firebase 实时数据库中的数据在 Android 中制作折线图。 这是数据库的结构: enter image description here 这是代码: public clas
我有一个 TSQL 查询,它提供了一些性能基线的一个月数据。我用折线图显示数据。现在我想在报告中添加更多参数,以提供从两个不同月份选择数据的选项,并将其显示在同一个折线图中以进行比较。我不知道如何开始
我有一个简单(但非常大)的数据集,其中包含从 4 月到 8 月在不同站点进行的计数。 在 4 月中旬和 7 月之间,没有零计数 - 但零线从最早到最晚的日期延伸。 以下是用于制作上述图表的部分数据(列
我正在创建一个折线图,我想在不改变线条长度的情况下增加线条的高度或厚度。 在增加宽度属性之前,它看起来像这样: 增加宽度属性后,它看起来像这样: 我只想增加 height,但是没有这样的属性,所以我尝
我想在折线图的顶部显示值。我看过this answer这很有帮助,但它改变了折线图节点。我想要的是相同的想法,但不在节点上显示值,而是在它们附近(可能在它们的右侧和上方)显示值,例如:
我正在尝试使用谷歌图表以折线图的形式显示mysql数据。我认为问题出在我尝试格式化谷歌图表数据的部分。我的代码有什么问题吗? $sth = mysql_query("SELECT * FROM rea
我有 JavaFX LineChart 和一些带有 XYChart.Series 对象的数据 XYChart.Series series = new XYChart.Series(); series.
给定: 理想图 - 描绘了我的机器应该具有的预期读数。实际图表 - 描述我的机器在该实例中的实际读数。 X轴:来自机器的力(N) Y 轴:时间 这两个图都是使用 python 中的 pyplot 库创
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 6 年前。
<% function table2(total,table_x,table_y,all_width,all_height,line_n
我想根据数据中的一列离散值过滤使用 plotly 创建的图表。最终目标是能够使用按钮来更新过滤值,所以我不想事先过滤数据。 library(plotly) df % filter(group1=
我正在尝试在 JavaFX 中创建折线图。此折线图应该有一个轴 (y) 与数字和另一个轴 (x) 与日期。日期范围应该由用户使用两个日期选择器来选择。现在这是我的问题:折线图只有类别和数字轴。有什么方
我正在使用 nivo 折线图,并希望将 x 轴用作时间线,最多一分钟。 不幸的是,我无法呈现该图表,因为它无法正确读取日期。例如,这是我的数据的一部分: { x: "2020-04-24T13:07:
我有一个用 gRaphael 创建的折线图。它有轴和刻度线,但我想要网格线。是否有内置的方法来实现这一点或可以帮助我的附加库? 最佳答案 gRaphael 没有添加网格线的内置方法,但绘制它们非常容易
我正在生成一份报告,该报告是根据查询字符串在网页的页面加载时生成的。我在电子表格中生成的单元格数据完全符合我的要求。现在我需要添加一个折线图。数据是动态的,行数会有所不同。 搜索后没有信息,这与在 .
我正在尝试使用 highcharts 中每 x 秒更新一次的折线图。理想情况下,我希望它使用一些特定数据进行初始化,并每 x 秒轮询一次 Web 服务,并进行相应更新。 目前,我只是尝试使用网络服务中
我是一名优秀的程序员,十分优秀!