@@ -141,6 +141,23 @@ export default {
freq: {title: 'New Cases', x: 'Date', y: 'Count'},
casesByTask: {title: 'Number of Cases by Activity', x: 'Times', y: 'Activity'},
},
+ tooltip: {
+ avgCycleEfficiency: {
+ value: 'Cycle Efficiency: The ratio of the total productive time to the total cycle time of a process. Productive time refers to the time during which value-adding activities are performed, while cycle time is the total time from the start to the end of the process, including both productive and non-productive periods.',
+ class: '!max-w-[212px] !text-[10px] !opacity-80',
+ autoHide: false,
+ },
+ avgWaitingTime: {
+ value: 'Average Waiting Time: The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity.',
+ class: '!max-w-[212px] !text-[10px] !opacity-80',
+ autoHide: false,
+ },
+ avgWaitingTimeByEdge: {
+ value: 'Average Waiting Time Between Activities: The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity.',
+ class: '!max-w-[212px] !text-[10px] !opacity-80',
+ autoHide: false,
+ },
+ },
isActive: null,
avgCycleTimeData: null,
avgCycleTimeOptions: null,
diff --git a/src/views/Discover/Performance/index.vue b/src/views/Discover/Performance/index.vue
index 29ab0b0..13c3f56 100644
--- a/src/views/Discover/Performance/index.vue
+++ b/src/views/Discover/Performance/index.vue
@@ -56,7 +56,7 @@
Waiting Time
-
- {{ contentData.avgWaitingTime.title }}
+ {{ contentData.avgWaitingTime.title }}info
-
@@ -147,12 +147,16 @@ export default {
class: '!max-w-[212px] !text-[10px] !opacity-80',
autoHide: false,
},
- avgWaitingTimeByEdge: {
- value: 'Average Waiting Time Between Activities : The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity.',
+ avgWaitingTime: {
+ value: 'Average Waiting Time: The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity.',
class: '!max-w-[212px] !text-[10px] !opacity-80',
autoHide: false,
- }
-
+ },
+ avgWaitingTimeByEdge: {
+ value: 'Average Waiting Time Between Activities: The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity.',
+ class: '!max-w-[212px] !text-[10px] !opacity-80',
+ autoHide: false,
+ },
},
isActive: null,
avgCycleTimeData: null,