QPR ProcessAnalyzer KPI Card: Difference between revisions

From QPR ProcessAnalyzer Wiki
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
KPI Card shows a single measure value. In addition to the value, the measure label is shown. Measure value color, title color and background color can be changed. Optionally, the measure can be visualized with an icon shown left side of the measure. The icon type and color can be customized.
KPI Card shows a single data point value with a descriptive label. Background color, data point text color and label color can be changed and set to be conditionally determined. Optionally, the data point can be visualized with an icon shown left side of the value. Also the icon type and color can be customized.


== KPI Card Functionalities ==
== KPI Card Functionalities ==
The KPI card has the following functionalities:
The KPI card has the following functionalities:
* KPI is able present a single measure value (which is set in the first measure).
* KPI presents a single data point value. The measure, dimension or column used is defined by the '''KPI valu''' mapping.
* Color of the icon can be set either using the [[#Set Icon Color Using Second Measure|second measure]] or with the [[#Conditional Formatting|conditional formatting]] (if both are defined, the second measure is used).
* Color of the icon can be set either using another measure, dimension or column mapped to the '''Color''' or with the [[#Conditional Formatting|conditional formatting]] (if both are defined, the second measure is used).
* Color of the shown measure value can be changed using the measure color (in the measure's ''Advanced Settings'').
* Color of the shown measure value can be changed using the measure, dimension or column color (in the measure, dimension or column settings).
* Conditional formatting allow to determine measure value color, title color, background color and the icon color (for more information, see [[#Conditional Formatting|Conditional Formatting]]).
* Conditional formatting allow to determine data point value color, title color, background color and the icon color (for more information, see [[#Conditional Formatting|Conditional Formatting]]).
* Appearance of the shown value can be changed in the first measure settings, using settings ''Round to decimals'', ''Measure unit'' and ''Date format''.
* Appearance of the shown value can be changed by using settings ''Round to decimals'', ''Measure unit'' and ''Date format'' (in the measure, dimension or column settings).
* Title of the measure can be changed either by specifying a custom measure label in the measure advanced settings or use the title field in the ''General'' tab.
* Title of the measure can be changed by using the title field in the ''General'' tab.
* It's possible to define a dimension, which will show measure values for all those dimension values as a list.
* If there are several rows in the queried dataset, a data point for each row is shown as a comma separated list.


== Set Icon Color Using Second Measure ==
== Set Icon Color Using Second Measure ==
Icon Color can be set either using the seconds measure or the [[#Conditional Formatting|conditional formatting]]. To use the second measure, follow these steps:
Icon Color can be set either using a measure, dimension or column mapped to the '''Color''' or the [[#Conditional Formatting|conditional formatting]]. To use a measure, dimension or column, follow these steps:
# Select the KPI Card as a visualization.
# Select the KPI Card as a visualization.
# Define your KPI as the first measure.
# Define your KPI as the first measure.
Line 28: Line 28:
* '''title''': Settings related to the measure title (label). Currently, only the title color can be changed.
* '''title''': Settings related to the measure title (label). Currently, only the title color can be changed.
** '''color''': Color of the measure title (label). By default #4f5765 (grey).
** '''color''': Color of the measure title (label). By default #4f5765 (grey).
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 ===
=== Conditional Formatting Examples ===

Revision as of 23:53, 30 November 2022

KPI Card shows a single data point value with a descriptive label. Background color, data point text color and label color can be changed and set to be conditionally determined. Optionally, the data point can be visualized with an icon shown left side of the value. Also the icon type and color can be customized.

KPI Card Functionalities

The KPI card has the following functionalities:

  • KPI presents a single data point value. The measure, dimension or column used is defined by the KPI valu mapping.
  • Color of the icon can be set either using another measure, dimension or column mapped to the Color or with the conditional formatting (if both are defined, the second measure is used).
  • Color of the shown measure value can be changed using the measure, dimension or column color (in the measure, dimension or column settings).
  • Conditional formatting allow to determine data point value color, title color, background color and the icon color (for more information, see Conditional Formatting).
  • Appearance of the shown value can be changed by using settings Round to decimals, Measure unit and Date format (in the measure, dimension or column settings).
  • Title of the measure can be changed by using the title field in the General tab.
  • If there are several rows in the queried dataset, a data point for each row is shown as a comma separated list.

Set Icon Color Using Second Measure

Icon Color can be set either using a measure, dimension or column mapped to the Color or the conditional formatting. To use a measure, dimension or column, follow these steps:

  1. Select the KPI Card as a visualization.
  2. Define your KPI as the first measure.
  3. In the Advanced settings of the first measure, set text measure1 to the Variable name field.
  4. Select Data point colors as the second measure, and define the limit values between green-yellow and red-yellow.

Now the KPI targets are visualized as a colored icon next to the KPI value.

Conditional Formatting

The following conditional formatting are available:

  • icon: Icon type that is shown left of the measure value. Configured similarly than in table conditional formatting. If only icon color is defined, the default square icon is used.
  • textColor: Text color of the KPI Card. By default #0f2975 (dark blue). Configured similarly than in table conditional formatting.
  • backgroundColor: Background color of the KPI Card. Configured similarly than in table conditional formatting.
  • title: Settings related to the measure title (label). Currently, only the title color can be changed.
    • color: Color of the measure title (label). By default #4f5765 (grey).

Conditional Formatting Examples

Measure value color:

{
	"textColor": {
		"rules": [
			{
				"value": 100,
				"comparison": ">",
				"color": "#68DD8F"
			},
			{
				"color": "#EF5254"
			}
		]
	}
}

Title color:

{
	"title": {
		"color": {
			"scale": [
				{
					"value": 0,
					"color": "#FFFFFF"
				},
				{
					"value": 100,
					"color": "#68DD8F"
				}
				
			]
		}
	}
}

Icon and its color:

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