+++ # ----------------------------------------------------------------------- # Do not edit this file. It is automatically generated by API Documenter. # ----------------------------------------------------------------------- title = "DisplayValue" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++ ## DisplayValue interface Signature ```typescript export interface DisplayValue extends FormattedValue ``` Import ```typescript import { DisplayValue } from '@grafana/data'; ``` Properties | Property | Type | Description | | --- | --- | --- | | [color](#color-property) | string | Color based on configs or Threshold | | [numeric](#numeric-property) | number | Use isNaN to check if it is a real number | | [percent](#percent-property) | number | 0-1 between min & max | | [title](#title-property) | string | | ### color property Color based on configs or Threshold Signature ```typescript color?: string; ``` ### numeric property Use isNaN to check if it is a real number Signature ```typescript numeric: number; ``` ### percent property 0-1 between min & max Signature ```typescript percent?: number; ``` ### title property Signature ```typescript title?: string; ```