- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个自定义 Rally 应用程序。我使用回溯 API 提取数据并使用图表将其绘制成图表。该图表是在检索所有数据之前绘制的。因此,我有一个命令按钮,它将触发图表重新加载或刷新或删除并再次插入。
但是我无法弄清楚如何重新加载/刷新按钮。
我已经看过
但它们不适用于我的情况。
也欢迎任何使其正常工作的替代方法。
我已附上用于 Rally-app-sdk 的 app.js。请帮忙!
var year = 2013;
var month = "07";
var date = 10;
var hh = "17";
var mm = "08";
var ss = "00";
var dates = [];
var array1 = [];
var arraySWQA = [];
//var a3= [1, 2, 3];
//console.log(a3.length);
var chartConfig;
var date1 = year + "-" + month + "-" + date + "T" + hh + ":" + mm + ":" + ss + "Z";
console.log(date1);
var date2 = year + "-" + month + "-" + (date + 10) + "T" + hh + ":" + mm + ":" + ss + "Z";
console.log(date2);
date1 = "2013-06-10T15:48:58Z";
Ext.define('CustomApp', {
extend: 'Rally.app.App',
componentCls: 'app',
id: 'appid',
launch: function () {
//Write app code here
console.log('hello world');
for (date = 10; date < 21;) {
date1 = year + "-" + month + "-" + date + "T" + hh + ":" + mm + ":" + ss + "Z";
var dispdate = month + "-" + date;
dates.push(dispdate);
date = date + 1;
date2 = year + "-" + month + "-" + date + "T" + hh + ":" + mm + ":" + ss + "Z";
console.log(date1);
//date1 = "2013-07-16T12:00:58Z";
//date2 = "2013-07-17T12:00:58Z";
//getting defect count from Parent project ie. all inclusive of SWQA for orbis
//-------------------------------------------------------------------------------------------------
//pasted in last one
var snapshotStore = Ext.create('Rally.data.lookback.SnapshotStore', {
context: {
workspace: '/workspace/3274954442'
},
find: {
//_ProjectHierarchy: 12280411247,
//__At: "2013-07-22T17:10:00Z",
__ValidFrom: date1,
__ValidTo: date2,
//FormattedID : 'DE12612',
//__ValidFrom: {$lte: "current"},
//__ValidTo:{$gt: "current"},
//__At:date1,
__TypeHierarchy: 'Defect'
},
listeners: {
load: function (store, data, success) {
//process data
var x = snapshotStore.getCount();
console.log(x);
//setTimeout(_loadChart(), 3000)
}
},
fetch: ['Name', 'State', 'FormattedID', 'OpenedDate'],
order: 'OpenedDate DESC',
hydrate: ['State', 'FormattedID'],
filters: [
{
property: '_TypeHierarchy',
operator: '=',
value: 'Defect'
}, {
property: '_ProjectHierarchy',
operator: '=',
value: 10883100246 //orbis 12280416678 // regicam que 9114502819: regicam exdg
}, {
property: 'OpenedDate',
operator: '>',
value: date1
}, {
property: 'OpenedDate',
operator: '<=',
value: date2
}
]
});
snapshotStore.load({
callback: function (records, operation) {
if (operation.wasSuccessful()) {
//process records
var listofdefects = [];
for (var i = 0; i < records.length; i++) {
//console.log(records[i].data.ObjectID);
var found = listofdefects.indexOf(records[i].data.ObjectID);
if (found == -1) {
listofdefects.push(records[i].data.ObjectID);
}
}
console.log("date = " + date1 + "original: " + records.length + " unique" + listofdefects.length);
array1.push(listofdefects.length);
console.log("list: " + listofdefects);
console.log("All Orbis:" + array1);
}
}
});
//getting defect count from Parent project ie. SWQA only for orbis
var snapshotStoreSWQA = Ext.create('Rally.data.lookback.SnapshotStore', {
context: {
workspace: '/workspace/3274954442'
},
find: {
//_ProjectHierarchy: 12280411247,
//__At: "2013-07-22T17:10:00Z",
__ValidFrom: date1,
__ValidTo: date2,
//FormattedID : 'DE12612',
//__ValidFrom: {$lte: "current"},
//__ValidTo:{$gt: "current"},
//__At:date1,
__TypeHierarchy: 'Defect'
},
listeners: {
load: function (store, data, success) {
//process data
var x = snapshotStoreSWQA.getCount();
console.log(x);
//setTimeout(_loadChart(), 3000)
}
},
fetch: ['Name', 'State', 'FormattedID', 'OpenedDate'],
order: 'OpenedDate DESC',
hydrate: ['State', 'FormattedID'],
filters: [
{
property: '_TypeHierarchy',
operator: '=',
value: 'Defect'
}, {
property: '_ProjectHierarchy',
operator: 'in',
value: [12226454553, 12829981291, 12226458054, 12280417123, 12226539592] // 10883100246 //orbis 12280416678 // regicam que 9114502819: regicam exdg
}, {
property: 'OpenedDate',
operator: '>',
value: date1
}, {
property: 'OpenedDate',
operator: '<=',
value: date2
}
]
});
snapshotStoreSWQA.load({
callback: function (records, operation) {
if (operation.wasSuccessful()) {
//process records
var listofdefects = [];
for (var i = 0; i < records.length; i++) {
//console.log(records[i].data.ObjectID);
var found = listofdefects.indexOf(records[i].data.ObjectID);
if (found == -1) {
listofdefects.push(records[i].data.ObjectID);
}
}
console.log("date = " + date1 + "original: " + records.length + " unique" + listofdefects.length);
arraySWQA.push(listofdefects.length);
console.log("list: " + listofdefects);
console.log("SWQA:" + arraySWQA);
}
}
});
} //endfor
this._loadChart();
this.redrawChart();
},
redrawChart: function() {
this.remove('chart');
console.log('redrawing');
this.add(chart);
},
_loadChart: function () {
chartConfig = {
chart: {
type: 'column'
},
title: {
text: 'Defect Kill Rate'
},
subtitle: {
text: 'From Date1 to Date2'
},
xAxis: {
categories: dates
},
yAxis: {
min: 0,
title: {
text: 'Defect count (no)'
}
},
tooltip: {
headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
pointFormat: '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' + '<td style="padding:0"><b>{point.y:.1f} mm</b></td></tr>',
footerFormat: '</table>',
shared: true,
useHTML: true
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
series: [{
name: 'SWQA defects',
data: arraySWQA
}, {
name: 'Orbis Defects',
data: array1
}]
};
chart = {
xtype: 'rallychart',
height: 300,
width: 400,
id: 'chart1',
chartConfig: chartConfig
};
button = {
xtype: 'rallybutton',
text: 'Click me',
handler: function () {
//Ext.Msg.alert('Button', 'You clicked me');
console.clear();
console.log("SWQA:" + arraySWQA);
console.log("ORBIS Rest:" + array1);
var a = Ext.getCmp('appid');
//a.remove(chart);
//a.add(chart);
//a.redrawChart();
console.log('callback');
Ext.create('Rally.ui.chart.Chart', {
chartConfig: {
chart: {
zoomType: "xy"
},
xAxis: {
title: {
text: "Date"
}
},
yAxis: [
{
title: {
text: "Points"
}
}
],
plotOptions: {
line: {
color: "#000"
},
column: {
stacking: null,
color: "#6AB17D",
lineColor: "#666666",
lineWidth: 1,
marker: {
lineWidth: 1,
lineColor: "#666666"
},
shadow: false
}
},
series: [{
name: 'SWQA defects',
data: arraySWQA
}, {
name: 'Orbis Defects',
data: array1
}]
}
//remaining configuration omitted for brevity
});
},
callback: function(){
}
};
this.add(button);
this.add(chart);
}
});
最佳答案
您可能会看到一个完整的代码示例,该应用程序根据发布下拉列表 here 中的选择使用新数据更新图表。 。在该代码中,我检查图表是否存在,如果存在则将其删除,然后再重新创建它:
if (this.down('#myChart')) {
this.remove('myChart');
}
this.add(
{
xtype: 'rallychart',
height: 400,
itemId: 'myChart',
chartConfig: {
//....
},
chartData: {
categories: scheduleStateGroups,
series: [
{
//...
}
]
}
}
);
this.down('#myChart')._unmask(); //otherwise loading mask does not go away
关于javascript - 使用 Rally 的图表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17975088/
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit th
需要在x轴的区间内显示日期标签。数据应保持不变,仅应根据快照显示日期间隔。 对于 y 轴上的简单数字,可以使用“刻度”实现这一点 max: 5000,
我目前正在使用 IOS 图表,该库的链接位于:Link 目前,图表左轴标签未代表其应有的内容。该图表当前已放大,以便可以平移。 这是一张显示左轴的图片: 实际的数据集是: y值 = [0,2,4,5,
我是第一次使用 ASP.NET 图表,并取得了巨大的成功。我想做的一件事是放大我的图表,使 y 值不在 0-100 之间。例如,假设我有一些点值,范围从 72 到 89。我想做的是在 y 轴上将最低
我正在使用 google graph 设计图表。我不需要 x 和 y 轴上的标签,所以我通过设置以下选项来隐藏它们: var options = { hAxis: { base
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
我得到了这个模板(默认) {name} 产生这个: 我想拥有与它的每一个功能相同的模板。但是,我还需要一个 if 子句。如果一个项目的值为 0,我不希望它被“传奇化”。 这是完整的代码 { xtype
我使用这些行从关闭的工作簿中获取值: Arg = "'" & Path & "[" & File & "]" & Sheet & "'!" & "R4C4" Arg = CStr(Arg) GetV
就目前情况而言,这个问题不太适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、民意调查或扩展讨论。如果您觉得这个问题可以改进并可能重新开放,visit
我有一张像这样的 table ________| S1 | S2|----------| a | b || b | c | -------- 我需要将其显示在散点图图表(或其他任何图表)上,其中
这个问题已经有答案了: Fix spacing between different series in JavaFX line chart (1 个回答) 已关闭 4 年前。 我有这个代码: publ
我已经阅读了 4 个 erlang 的开源系统 3 个月了,它们是 rabbitmq、couchdb、gproc、jobs。 它们和我以前的c#系统完全不同,因为有很多进程而且不是面向对象的。 用设计
我们希望使用我们设计的自定义图像动态创建图表。这将在 Java 1.5 Web 应用程序中使用。一个例子是显示代表男女比例的图表。我们希望图表是女性图标和男性图标的线性行,其中女性图标的数量将是女性的
我有 2 列,一列包含我的数据点,另一列包含每个数据点的标准差。如何在 Excel 上绘制线图,其误差线等于每个点的透视标准差? 例如 Col-1 Col-2 1 0.1 2 0
我正在使用 JFreechart API 来生成“条形图”。我可以保存它们,但如何从 Java GUI 应用程序的打印机打印它们? 最佳答案 我在代码中使用以下代码片段。 IStatisticsGra
我有一个电子表格,其中包含大量图表,还有一张工作表,其中包含大量为这些图表提供数据的数据。 我使用 在每个图表上绘制了数据 =Sheet1!$C5:$C$3000 这基本上只是在图表上绘制 C5 到
我很少使用Excel,对图表和绘图相关函数没有深入的了解。话虽如此... 我有几十行数据,由 4 列组成 第 1 列 = 金额/价格(以数字表示) 第 2 列 = 描述(内容正文) 第 3 列 = 类
我正在使用 iOS-Charts,升级到 Swift3 后,我现在注意到图表底部有一个奇怪的空白区域,说明会出现在该空白区域。我尝试隐藏描述(将其设置为“”或启用= false),但它仍然显示此差距。
我已经在评论中的以下链接之一中找到了一些使用实时数据绘制图表的示例。我现在的问题是,我还可以实时绘制图表标签、坐标轴和其他相关内容吗? 其实我要找的是绘制实时数据的图表。通过搜索实时而非动态数据,我找
我是一名优秀的程序员,十分优秀!