QPR ProcessAnalyzer KPI Card: Difference between revisions

From QPR ProcessAnalyzer Wiki
Jump to navigation Jump to search
(Created page with "KPI Card shows one measure value. In addition to the value, the measure label is shown. Color of the measure value can be changed using the measure color (in the measure Adv...")
 
No edit summary
Line 1: Line 1:
KPI Card shows one measure value. In addition to the value, the measure label is shown.  
KPI Card shows a single measure value. In addition to the value, the measure label is shown.  


Color of the measure value can be changed using the measure color (in the measure Advanced Settings).
Color of the measure value can be changed using the measure color (in the measure Advanced Settings).
The following conditional formatting are available:
* '''backgroundColor''': Background color of the KPI Card. Configured similarly than in [[Tables Conditional Formatting]].
* '''textColor''': Text color of the KPI Card. By default #0f2975 (dark blue). Configured similarly than in [[Tables Conditional Formatting]].
* '''icon''': Icon type that is shown next to the measure value. Configured similarly than in [[Tables Conditional Formatting]].
** '''color''': Color of the icon. Configured similarly than in [[Tables Conditional Formatting]].
* '''title''': Settings for the measure title (label).
** '''color''': Color of the measure title (label).


It's also possible to define a dimension for the KPI Card, which shows a list of measure values for each dimension.
It's also possible to define a dimension for the KPI Card, which shows a list of measure values for each dimension.
== Conditional Formatting Examples ==
Title color:
<pre>
{
"icon": {
"color": {
"rules": [
{
"color": "#36d475",
"value": 100,
"comparison": ">"
},
{
"color": "#EF5254"
}
]
}
}
}
</pre>
Icon and its color:
<pre>
{
"icon": {
"rules": [
{
"icon": "arrow_upward",
"value": { "type":"measure", "index": 2 },
"comparison": ">"
},
{
"icon": "arrow_downward"
}
],
"color": "#069cf0"
}
}
</pre>


[[Category: QPR ProcessAnalyzer]]
[[Category: QPR ProcessAnalyzer]]

Revision as of 18:15, 22 August 2020

KPI Card shows a single measure value. In addition to the value, the measure label is shown.

Color of the measure value can be changed using the measure color (in the measure Advanced Settings).

The following conditional formatting are available:

It's also possible to define a dimension for the KPI Card, which shows a list of measure values for each dimension.

Conditional Formatting Examples

Title color:

{
	"icon": {
		"color": {
			"rules": [
				{
					"color": "#36d475",
					"value": 100,
					"comparison": ">"
				},
				{
					"color": "#EF5254"
				}
			]
		}
	}
}

Icon and its color:

{
	"icon": {
		"rules": [
			{
				"icon": "arrow_upward",
				"value": { "type":"measure", "index": 2 },
				"comparison": ">"
			},
			{
				"icon": "arrow_downward"
			}
		],
		"color": "#069cf0"
	}
}