QPR ProcessAnalyzer KPI Card

From QPR ProcessAnalyzer Wiki
Revision as of 18:15, 22 August 2020 by Ollvihe (talk | contribs)
Jump to navigation Jump to search

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"
	}
}