什么信息完全符合拉力赛的标准报告?

时间:2015-11-10 23:05:48

标签: rally

此图表传达了哪些确切信息? Standard Report

说出缺陷和故事是非常模糊的。缺陷是否只是在这段时间内提交的缺陷(不关心什么"状态"它们在哪里?)或者这显示了某种状态下的缺陷?

关于Rally的网站有很多信息,我同意,但它遍布各地,因此,即使是使用拉力赛sdk的简单事情也很难做到。

@Kyle这是我的标准报告代码,几乎没有修改。即使添加了额外的参数,标准的报告图表仍然与添加它们之前的相同。

    _standardReport: function() {
    this.chartContainer.add({
                xtype:'rallystandardreport',
                project: Rally.util.Ref.getRelativeUri(this.getContext().getProject()),
                projectScopeUp: this.getContext().getProjectScopeUp(),
                projectScopeDown: this.getContext().getProjectScopeDown(),
                width: 600,
                height: 400,
                reportConfig: {
                    report: Rally.ui.report.StandardReport.Reports.Throughput,
                    work_items: 'G,D',
                    filter_field: 'ScheduleState',
                    from_state: 'Accepted',   <<<<<< added these
                    to_state: 'Accepted',      <<<<<<added these
                    DefectsByPriority: 'P1'   <<<<<< added these
                }
    });
},

由于 凯

2 个答案:

答案 0 :(得分:2)

标准报告是一类报告 - 可在“报告”标签上找到。示例中的特定一个是吞吐量报告。有关它的更多信息,请访问:https://help.rallydev.com/team-measurements?basehost=https://rally1.rallydev.com#through

答案 1 :(得分:0)

StandardReport组件基本上只是一种在应用程序内的Reports选项卡中嵌入内置报表的方法。

以下是从文档中使用它的示例:https://help.rallydev.com/apps/2.0/doc/#!/example/standard-report

您可以使用reportConfig控制要显示的报告及其各种配置参数: https://help.rallydev.com/apps/2.0/doc/#!/api/Rally.ui.report.StandardReport-cfg-reportConfig