0
A
回答
0
@ selten98:當然,我在這裏的代碼:
for (var i in plot) {
groups.add({
content: labelArray[i],
id: plot[i],
options: {
shaded: {
orientation: "bottom"
}
}
});
for (var j in GD) {
if (GD[j].hasOwnProperty(plot[i])) {
items.push({
group: plot[i],
label: {
className: "visibility-hidden label-group-" + labelArray[i],
content: GD[j][plot[i]].toFixed(1),
xOffset: -10/3 * GD[j][plot[i]].toFixed(1).length,
yOffset: 20
},
x: new Date(GD[j].timestamp),
y: Number(String(GD[j][plot[i]]).replace(",", "."))
});
}
}
}
for (var i = 0; i < items.length; i++) {
if (i == 0) {
groups.add({
content: groupId,
id: groupId,
style: "stroke:" + arr_color[properties],
options: {
shaded: {
orientation: "bottom",
style: "fill:" + arr_color[properties]
},
drawPoints: {
styles: "stroke:" + arr_color[properties] + ";fill:" + arr_color[properties]
}
}
});
items[i].group = groupId;
scope.labels[properties].max = Number(items[i].y).toFixed(1);
scope.labels[properties].min = Number(items[i].y).toFixed(1);
} else {
if (items[i].label.className == items[i - 1].label.className) {
if (items[i].x.getTime() - items[i - 1].x.getTime() > Number(type[1]) * 60 * 1000) {
groupId++;
groups.add({
content: groupId,
id: groupId,
style: "stroke:" + arr_color[properties],
options: {
shaded: {
orientation: "bottom",
style: "fill:" + arr_color[properties]
},
drawPoints: {
styles: "stroke:" + arr_color[properties] + ";fill:" + arr_color[properties]
}
}
});
}
items[i].group = groupId;
scope.labels[properties].max = Math.max(scope.labels[properties].max, Number(items[i].y)).toFixed(1);
scope.labels[properties].min = Math.min(scope.labels[properties].min, Number(items[i].y)).toFixed(1);
} else {
groupId++;
properties++;
groups.add({
content: groupId,
id: groupId,
style: "stroke:" + arr_color[properties],
options: {
shaded: {
orientation: "bottom",
style: "fill:" + arr_color[properties]
},
drawPoints: {
styles: "stroke:" + arr_color[properties] + ";fill:" + arr_color[properties]
}
}
});
items[i].group = groupId;
scope.labels[properties].max = Number(items[i].y).toFixed(1);
scope.labels[properties].min = Number(items[i].y).toFixed(1);
}
}
}
var container = document.getElementById("graph");
container.innerHTML = "";
var dataset = new vis.DataSet(items);
var options = {
dataAxis: {
left: {
format: function (value) {
return Number(value).toFixed(1);
}
}
},
drawPoints: {
style: "circle"
},
orientation: "top",
showCurrentTime: true,
end: new Date(end),
max: new Date(end),
min: new Date(start),
start: new Date(start)
};
startTime = options.start.getTime();
endTime = options.end.getTime();
var graph2d = new vis.Graph2d(container, dataset, groups, options);
相關問題
- 1. 有時isql沒有連接,tsql沒有連接
- 2. 沒有adobe cirrus的點對點連接
- 3. SLComposeViewControllerResultDone在沒有連接時返回
- 4. 在VS 2008 SP1中進行調試時,斷點沒有連接
- 5. 點擊沒有事件連接
- 6. 運輸端點沒有連接
- 7. 傳輸端點沒有連接的bluez
- 8. 在web.config中連接到MSSQL時沒有連接字符串
- 9. getConnection在JDBC連接本地mysql時沒有連接db
- 10. 沒有SQL連接
- 11. Signalr沒有連接
- 12. QPushbutton沒有連接
- 13. 有沒有來連接在python
- 14. 有沒有辦法在VBA中連接?
- 15. 只有在終端沒有連接
- 16. Angular2 Http - 沒有錯誤,沒有連接
- 17. 在沒有連接的套接字中寫入時沒有錯誤
- 18. 連接到服務時沒有端點偵聽
- 19. Zend_Db_Profiler沒有記錄db連接時間?
- 20. Maven安裝時沒有網絡連接
- 21. select()返回時沒有傳入連接
- 22. Nodejs連接SQL沒有連接
- 23. jquery ui sortable:連接並沒有連接?
- 24. 沒有連接被稱爲未連接
- 25. 在啓動spring-boot時,tomcat datasource沒有檢查有效連接?
- 26. 休眠c3p0連接池沒有超時空閒連接
- 27. Rails + SQL:當沒有連接時包含連接表
- 28. 嘗試連接時沒有使用tnsnames連接TNS listner錯誤#
- 29. 連接到SqlServer時沒有「UserActionEvent的連接池」
- 30. PostgreSQL沒有關閉連接
您可以添加代碼? – selten98