process-mining
2021.10
true
- 发行说明
- 入门指南
- 安装
- 配置
- 集成
- 身份验证
- Working with Apps and Discovery Accelerators
- AppOne 菜单和仪表板
- AppOne 设置
- TemplateOne 1.0.0 菜单和仪表板
- TemplateOne 1.0.0 设置
- TemplateOne 入门
- Steps to roll-out TemplateOne 1.0.0
- Input tables of TemplateOne 1.0.0
- Adding custom attributes
- Configuring the context bar
- TemplateOne menus and dashboards
- TemplateOne 2021.4.0 设置
- Purchase to Pay Discovery Accelerator 菜单和仪表板
- 购买到付款 Discovery Accelerator 设置
- Order to cash Discovery Accelerator 菜单和仪表板
- “订单到现金” Discovery Accelerator 设置
- Basic Connector for AppOne
- SAP Connectors
- 适用于 AppOne 的 SAP 订单到现金连接器
- 适用于 AppOne 的 SAP 采购到付款连接器
- SAP Connector for Purchase to Pay Discovery Accelerator
- SAP Connector for Order-to-Cash Discovery Accelerator
- Superadmin
- 仪表板和图表
- 表格和表格项目
- 应用程序完整性
- How to ....
- 使用 SQL 连接器
- Introduction to SQL connectors
- Setting up a SQL connector
- CData Sync extractions
- Running a SQL connector
- Editing transformations
- 释放 SQL 连接器
- Scheduling data extraction
- Structure of transformations
- Using SQL connectors for released apps
- Generating a cache with scripts
- Setting up a local test environment
- Separate development and production environments
- 实用资源
重要 :
请注意,此内容已使用机器翻译进行了部分本地化。
新发布内容的本地化可能需要 1-2 周的时间才能完成。

Process Mining 用户指南
上次更新日期 2026年4月23日
Configuring the context bar
简介
TemplateOne中的大多数仪表板顶部都有一个上下文栏,用于显示上下文信息和 KPI。您可以在上下文栏中配置元素。TemplateOne最多支持 6 个元素,这些元素可以在 “HTML”面板中进行配置。另请参见HTML 面板。
您可以配置 6 个以上的元素。 但是,这可能会影响上下文信息的可读性。
要将上下文栏添加到新的仪表板,您可以从现有仪表板复制表达式中的代码并更改配置。
Configuring the context bar
配置包括设置元素数量和单个元素。
Setting the number of elements
请按照以下步骤更改上下文栏中的元素数量。
| 步骤 | 操作 |
|---|---|
| 1 | Click on the expression in the Expression field in the General panel to edit the expression. |
| 2 | 将Number_of_KPIs变量中的整数设置为要在上下文栏中显示的元素数。 |
请参见下图。

var Number_of_KPIs := 3;
var Number_of_KPIs := 3;
备注:
If you enter a higher number than the number of elements that you configure, the elements will show nothing but will take up space in the context bar.
Configuring the individual elements
单个元素的配置包括设置许多变量。
| 元素 | 描述 |
|---|---|
| KPI_n_title | 要在上下文栏中显示的元素或 KPI 的名称。 |
| KPI_n_present | 计算得出的要在选定期间显示的实际指标。 |
| KPI_n_comparison | 显示在实际指标旁边的比较指标。 通常,这是一个包含所选时间段以外数据的指标。 |
| KPI_n_higher_is_better | 该值用于确定是否应将 KPI 的提高视为改进。 这会影响颜色或比较 KPI:绿色 - 较好,红色 - 较差。 |
| KPI_n_action | 使元素可单击的操作。 默认情况下,不使用操作,但可以使用用于配置此操作的选项。 |
请参见下图。

示例
// KPI 1
var KPI_1_title := 'Average throughput time';
var KPI_1_present := metric(Metric_cases_average_throughput_time, filter(records, activeperiodfilter));
var KPI_1_comparison := metric(Metric_cases_average_throughput_time, filter(records, not activeperiodfilter));
var KPI_1_higher_is_better := false;
var KPI_1_action := Action_analyze_total_case_value;
// KPI 1
var KPI_1_title := 'Average throughput time';
var KPI_1_present := metric(Metric_cases_average_throughput_time, filter(records, activeperiodfilter));
var KPI_1_comparison := metric(Metric_cases_average_throughput_time, filter(records, not activeperiodfilter));
var KPI_1_higher_is_better := false;
var KPI_1_action := Action_analyze_total_case_value;
高级配置
您可以将上下文栏添加到新仪表板,也可以将其他 KPI 添加到上下文栏中。
Extra period
如果您在仪表板上创建另一个栏或复制其中一个现有栏,请确保启用“额外期间” 。
请按照以下步骤添加额外的句点。
| 步骤 | 操作 |
|---|---|
| 1 | 在开发者环境中打开TemplateOne 。 |
| 2 | 转到要为其配置上下文栏的仪表板。 |
| 3 | 单击上下文栏。 |
| 4 | 转到“HTML 面板”选项卡。 |
| 5 | Click on nonein the Extra period field in the General panel and select the extra period. |
请参见下图。

Ading additional elements
如果要为上下文栏配置 6 个以上的元素,则必须复制元素集并针对每个新元素进行调整。 您还必须复制和调整每个新元素的代码,并将其添加到表达式末尾的 KPI 列表中。 请参见下图。

备注:
对于“详细信息 - 案例概述”仪表板,上下文栏的结构略有不同,但基于为 KPI_ n title 和 KPI n _present 定义的基础结构。在这里, “额外”时段也未使用,因此已从模板中删除。