Skip to main content
Tag

PivotGridField.KpiGraphic Property

Gets or sets a graphic set used to indicate KPI values. This is a dependency property.

Namespace: DevExpress.Xpf.PivotGrid

Assembly: DevExpress.Xpf.PivotGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PivotGrid

Declaration

public PivotKpiGraphic KpiGraphic { get; set; }

Property Value

Type Description
PivotKpiGraphic

A PivotKpiGraphic enumeration value that specifies the graphic set used to indicate KPI values.

Available values:

Show 16 items
Name Description
None

No image is displayed.

ServerDefined

The KPI graphic type is defined by the server.

Shapes

KPIGraphic_Shapes_-1KPIGraphic_Shapes_0KPIGraphic_Shapes_1

TrafficLights

KPIGraphic_TrafficLights_-1KPIGraphic_TrafficLights_0KPIGraphic_TrafficLights_1

RoadSigns

KPIGraphic_RoadSigns_-1KPIGraphic_RoadSigns_0KPIGraphic_RoadSigns_1

Gauge

KPIGraphic_Gauge_-1KPIGraphic_Gauge_0KPIGraphic_Gauge_1

ReversedGauge

KPIGraphic_ReversedGauge_-1KPIGraphic_ReversedGauge_0KPIGraphic_ReversedGauge_1

Thermometer

KPIGraphic_Thermometer_-1KPIGraphic_Thermometer_0KPIGraphic_Thermometer_1

ReversedThermometer

KPIGraphic_ReversedThermometer_-1KPIGraphic_ReversedThermometer_0KPIGraphic_ReversedThermometer_1

Cylinder

KPIGraphic_Cylinder_-1KPIGraphic_Cylinder_0KPIGraphic_Cylinder_1

ReversedCylinder

KPIGraphic_ReversedCylinder_-1KPIGraphic_ReversedCylinder_0KPIGraphic_ReversedCylinder_1

Faces

KPIGraphic_Faces_-1KPIGraphic_Faces_0KPIGraphic_Faces_1

VarianceArrow

KPIGraphic_VarianceArrow_-1KPIGraphic_VarianceArrow_0KPIGraphic_VarianceArrow_1

StandardArrow

KPIGraphic_StandardArrow_-1KPIGraphic_StandardArrow_0KPIGraphic_StandardArrow_1

StatusArrow

KPIGraphic_StatusArrow_-1KPIGraphic_StatusArrow_0KPIGraphic_StatusArrow_1

ReversedStatusArrow

KPIGraphic_ReversedStatusArrow_-1KPIGraphic_ReversedStatusArrow_0KPIGraphic_ReversedStatusArrow_1

Remarks

Since KPI supports graphic representation for its Status and Trend values, these values can be replaced with images. OLAP supports 12 graphic sets such as shapes, smiley faces, traffic lights, etc. Use the KpiGraphic property to specify the required graphic set.

If the KpiGraphic property is set to PivotKpiGraphic.ServerDefined, the OLAP server specifies the graphic set. In this instance, use the PivotGridField.ActualKpiGraphic property to determine which graphic set is actually used.

KPI graphics can be displayed for table datasources, as well. To enable this, the KpiGraphic property should not be set to PivotKpiGraphic.ServerDefined. In this instance, valid KPI values are -1 (bad), 0 (neutral) and 1 (good).

To learn more, see Key Performance Indicators (KPIs).

See Also