<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Override field values on Grafana Labs</title><link>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/</link><description>Recent content in Override field values on Grafana Labs</description><generator>Hugo -- gohugo.io</generator><language>en</language><atom:link href="/docs/grafana/v8.4/panels/override-field-values/index.xml" rel="self" type="application/rss+xml"/><item><title>About field overrides</title><link>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/about-field-overrides/</link><pubDate>Sat, 04 Apr 2026 12:26:57 +0000</pubDate><guid>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/about-field-overrides/</guid><content><![CDATA[&lt;h1 id=&#34;about-field-overrides&#34;&gt;About field overrides&lt;/h1&gt;
&lt;p&gt;Overrides allow you to change the settings for one or more fields. Field options for overrides are the same as the field options available in a particular visualization. The only difference is that you choose which fields to apply them to.&lt;/p&gt;
&lt;p&gt;For example, you could change the number of decimal places shown in all numeric fields or columns by changing the &lt;strong&gt;Decimals&lt;/strong&gt; option for &lt;strong&gt;Fields with type&lt;/strong&gt; that matches &lt;strong&gt;Numeric&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id=&#34;example-1-format-temperature&#34;&gt;Example 1: Format temperature&lt;/h2&gt;
&lt;p&gt;Let’s assume that our result set is a data frame that consists of two fields: time and temperature.&lt;/p&gt;
&lt;section class=&#34;expand-table-wrapper&#34;&gt;&lt;div class=&#34;button-div&#34;&gt;
      &lt;button class=&#34;expand-table-btn&#34;&gt;Expand table&lt;/button&gt;
    &lt;/div&gt;&lt;div class=&#34;responsive-table-wrapper&#34;&gt;
    &lt;table&gt;
      &lt;thead&gt;
          &lt;tr&gt;
              &lt;th style=&#34;text-align: center&#34;&gt;time&lt;/th&gt;
              &lt;th style=&#34;text-align: center&#34;&gt;temperature&lt;/th&gt;
          &lt;/tr&gt;
      &lt;/thead&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:04:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;45.0&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:05:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;47.0&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:06:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;48.0&lt;/td&gt;
          &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/div&gt;
&lt;/section&gt;&lt;p&gt;Each field (column) of this structure can have field options applied that alter the way its values are displayed. This means that you can, for example, set the Unit to Temperature &amp;gt; Celsius, resulting in the following table:&lt;/p&gt;
&lt;section class=&#34;expand-table-wrapper&#34;&gt;&lt;div class=&#34;button-div&#34;&gt;
      &lt;button class=&#34;expand-table-btn&#34;&gt;Expand table&lt;/button&gt;
    &lt;/div&gt;&lt;div class=&#34;responsive-table-wrapper&#34;&gt;
    &lt;table&gt;
      &lt;thead&gt;
          &lt;tr&gt;
              &lt;th style=&#34;text-align: center&#34;&gt;time&lt;/th&gt;
              &lt;th style=&#34;text-align: center&#34;&gt;temperature&lt;/th&gt;
          &lt;/tr&gt;
      &lt;/thead&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:04:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;45.0 °C&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:05:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;47.0 °C&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:06:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;48.0 °C&lt;/td&gt;
          &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/div&gt;
&lt;/section&gt;&lt;p&gt;In addition, the decimal place is not required, so we can remove it. You can change the Decimals from &lt;code&gt;auto&lt;/code&gt; to zero (&lt;code&gt;0&lt;/code&gt;), resulting in the following table:&lt;/p&gt;
&lt;section class=&#34;expand-table-wrapper&#34;&gt;&lt;div class=&#34;button-div&#34;&gt;
      &lt;button class=&#34;expand-table-btn&#34;&gt;Expand table&lt;/button&gt;
    &lt;/div&gt;&lt;div class=&#34;responsive-table-wrapper&#34;&gt;
    &lt;table&gt;
      &lt;thead&gt;
          &lt;tr&gt;
              &lt;th style=&#34;text-align: center&#34;&gt;time&lt;/th&gt;
              &lt;th style=&#34;text-align: center&#34;&gt;temperature&lt;/th&gt;
          &lt;/tr&gt;
      &lt;/thead&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:04:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;45 °C&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:05:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;47 °C&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;2020-01-02 03:06:00&lt;/td&gt;
              &lt;td style=&#34;text-align: center&#34;&gt;48 °C&lt;/td&gt;
          &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/div&gt;
&lt;/section&gt;&lt;h2 id=&#34;example-2-format-temperature-and-humidity&#34;&gt;Example 2: Format temperature and humidity&lt;/h2&gt;
&lt;p&gt;Let’s assume that our result set is a data frame that consists of four fields: time, high temp, low temp, and humidity.&lt;/p&gt;
&lt;section class=&#34;expand-table-wrapper&#34;&gt;&lt;div class=&#34;button-div&#34;&gt;
      &lt;button class=&#34;expand-table-btn&#34;&gt;Expand table&lt;/button&gt;
    &lt;/div&gt;&lt;div class=&#34;responsive-table-wrapper&#34;&gt;
    &lt;table&gt;
      &lt;thead&gt;
          &lt;tr&gt;
              &lt;th&gt;time&lt;/th&gt;
              &lt;th&gt;high temp&lt;/th&gt;
              &lt;th&gt;low temp&lt;/th&gt;
              &lt;th&gt;humidity&lt;/th&gt;
          &lt;/tr&gt;
      &lt;/thead&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:04:00&lt;/td&gt;
              &lt;td&gt;45.0&lt;/td&gt;
              &lt;td&gt;30.0&lt;/td&gt;
              &lt;td&gt;67&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:05:00&lt;/td&gt;
              &lt;td&gt;47.0&lt;/td&gt;
              &lt;td&gt;34.0&lt;/td&gt;
              &lt;td&gt;68&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:06:00&lt;/td&gt;
              &lt;td&gt;48.0&lt;/td&gt;
              &lt;td&gt;31.0&lt;/td&gt;
              &lt;td&gt;68&lt;/td&gt;
          &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/div&gt;
&lt;/section&gt;&lt;p&gt;Let&amp;rsquo;s add the Celsius unit and get rid of the decimal place. This results in the following table:&lt;/p&gt;
&lt;section class=&#34;expand-table-wrapper&#34;&gt;&lt;div class=&#34;button-div&#34;&gt;
      &lt;button class=&#34;expand-table-btn&#34;&gt;Expand table&lt;/button&gt;
    &lt;/div&gt;&lt;div class=&#34;responsive-table-wrapper&#34;&gt;
    &lt;table&gt;
      &lt;thead&gt;
          &lt;tr&gt;
              &lt;th&gt;time&lt;/th&gt;
              &lt;th&gt;high temp&lt;/th&gt;
              &lt;th&gt;low temp&lt;/th&gt;
              &lt;th&gt;humidity&lt;/th&gt;
          &lt;/tr&gt;
      &lt;/thead&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:04:00&lt;/td&gt;
              &lt;td&gt;45 °C&lt;/td&gt;
              &lt;td&gt;30 °C&lt;/td&gt;
              &lt;td&gt;67 °C&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:05:00&lt;/td&gt;
              &lt;td&gt;47 °C&lt;/td&gt;
              &lt;td&gt;34 °C&lt;/td&gt;
              &lt;td&gt;68 °C&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:06:00&lt;/td&gt;
              &lt;td&gt;48 °C&lt;/td&gt;
              &lt;td&gt;31 °C&lt;/td&gt;
              &lt;td&gt;68 °C&lt;/td&gt;
          &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/div&gt;
&lt;/section&gt;&lt;p&gt;The temperature fields look good, but the humidity must now be changed. We can fix this by applying a field option override to the humidity field and change the unit to Misc &amp;gt; percent (0-100).&lt;/p&gt;
&lt;section class=&#34;expand-table-wrapper&#34;&gt;&lt;div class=&#34;button-div&#34;&gt;
      &lt;button class=&#34;expand-table-btn&#34;&gt;Expand table&lt;/button&gt;
    &lt;/div&gt;&lt;div class=&#34;responsive-table-wrapper&#34;&gt;
    &lt;table&gt;
      &lt;thead&gt;
          &lt;tr&gt;
              &lt;th&gt;time&lt;/th&gt;
              &lt;th&gt;high temp&lt;/th&gt;
              &lt;th&gt;low temp&lt;/th&gt;
              &lt;th&gt;humidity&lt;/th&gt;
          &lt;/tr&gt;
      &lt;/thead&gt;
      &lt;tbody&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:04:00&lt;/td&gt;
              &lt;td&gt;45 °C&lt;/td&gt;
              &lt;td&gt;30 °C&lt;/td&gt;
              &lt;td&gt;67%&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:05:00&lt;/td&gt;
              &lt;td&gt;47 °C&lt;/td&gt;
              &lt;td&gt;34 °C&lt;/td&gt;
              &lt;td&gt;68%&lt;/td&gt;
          &lt;/tr&gt;
          &lt;tr&gt;
              &lt;td&gt;2020-01-02 03:06:00&lt;/td&gt;
              &lt;td&gt;48 °C&lt;/td&gt;
              &lt;td&gt;31 °C&lt;/td&gt;
              &lt;td&gt;68%&lt;/td&gt;
          &lt;/tr&gt;
      &lt;/tbody&gt;
    &lt;/table&gt;
  &lt;/div&gt;
&lt;/section&gt;]]></content><description>&lt;h1 id="about-field-overrides">About field overrides&lt;/h1>
&lt;p>Overrides allow you to change the settings for one or more fields. Field options for overrides are the same as the field options available in a particular visualization. The only difference is that you choose which fields to apply them to.&lt;/p></description></item><item><title>View field overrides</title><link>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/view-field-override/</link><pubDate>Sat, 04 Apr 2026 12:26:57 +0000</pubDate><guid>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/view-field-override/</guid><content><![CDATA[&lt;h1 id=&#34;view-field-overrides&#34;&gt;View field overrides&lt;/h1&gt;
&lt;p&gt;You can view field overrides in the panel display options.&lt;/p&gt;
&lt;h2 id=&#34;before-you-begin&#34;&gt;Before you begin&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;../../working-with-panels/add-panel/&#34;&gt;Add a panel to a dashboard&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;../add-a-field-override/&#34;&gt;Add a field override&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To view field overrides&lt;/strong&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Open for edit the panel that contains the overrides you want to view.&lt;/li&gt;
&lt;li&gt;In the panel display options, click the &lt;strong&gt;Overrides&lt;/strong&gt; tab.&lt;/li&gt;
&lt;/ol&gt;
&lt;blockquote&gt;
&lt;p&gt;The override settings that appear on the &lt;strong&gt;All&lt;/strong&gt; tab are the same as the settings that appear on the &lt;strong&gt;Overrides&lt;/strong&gt; tab.&lt;/p&gt;&lt;/blockquote&gt;
]]></content><description>&lt;h1 id="view-field-overrides">View field overrides&lt;/h1>
&lt;p>You can view field overrides in the panel display options.&lt;/p>
&lt;h2 id="before-you-begin">Before you begin&lt;/h2>
&lt;ul>
&lt;li>&lt;a href="../../working-with-panels/add-panel/">Add a panel to a dashboard&lt;/a>.&lt;/li>
&lt;li>&lt;a href="../add-a-field-override/">Add a field override&lt;/a>.&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>To view field overrides&lt;/strong>:&lt;/p></description></item><item><title>Add a field override</title><link>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/add-a-field-override/</link><pubDate>Sat, 04 Apr 2026 12:26:57 +0000</pubDate><guid>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/add-a-field-override/</guid><content><![CDATA[&lt;h1 id=&#34;add-a-field-override&#34;&gt;Add a field override&lt;/h1&gt;
&lt;p&gt;You can override a field when you want to change the display of the value in the visualization.&lt;/p&gt;
&lt;h2 id=&#34;before-you-begin&#34;&gt;Before you begin&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;../../working-with-panels/add-panel/&#34;&gt;Add a panel to a dashboard&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To add a field override&lt;/strong&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Edit the panel to which you want to add an override.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;In the panel display options, in the &lt;strong&gt;Overrides&lt;/strong&gt; section, click &lt;strong&gt;Add field override&lt;/strong&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Select which fields an override rule will be applied to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Fields with name -&lt;/strong&gt; Select a field from the list of all available fields. Properties you add to a rule with this selector are only applied to this single field.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fields with name matching regex -&lt;/strong&gt; Specify fields to override with a regular expression. Properties you add to a rule with this selector are applied to all fields where the field name match the regex.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fields with type -&lt;/strong&gt; Select fields by type, such as string, numeric, and so on. Properties you add to a rule with this selector are applied to all fields that match the selected type.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fields returned by query -&lt;/strong&gt; Select all fields returned by a specific query, such as A, B, or C. Properties you add to a rule with this selector are applied to all fields returned by the selected query.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Click &lt;strong&gt;Add override property&lt;/strong&gt;.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Select the field option that you want to apply.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Enter options by adding values in the fields. To return options to default values, delete the white text in the fields.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Continue to add overrides to this field by clicking &lt;strong&gt;Add override property&lt;/strong&gt;, or you can click &lt;strong&gt;Add override&lt;/strong&gt; and select a different field to add overrides to.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;When finished, click &lt;strong&gt;Save&lt;/strong&gt; to save all panel edits to the dashboard.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
]]></content><description>&lt;h1 id="add-a-field-override">Add a field override&lt;/h1>
&lt;p>You can override a field when you want to change the display of the value in the visualization.&lt;/p>
&lt;h2 id="before-you-begin">Before you begin&lt;/h2>
&lt;ul>
&lt;li>&lt;a href="../../working-with-panels/add-panel/">Add a panel to a dashboard&lt;/a>.&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>To add a field override&lt;/strong>:&lt;/p></description></item><item><title>Edit a field overrides</title><link>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/edit-field-override/</link><pubDate>Sat, 04 Apr 2026 12:26:57 +0000</pubDate><guid>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/edit-field-override/</guid><content><![CDATA[&lt;h1 id=&#34;edit-a-field-override&#34;&gt;Edit a field override&lt;/h1&gt;
&lt;p&gt;Edit a field override when you want to make changes to an override setting.&lt;/p&gt;
&lt;h2 id=&#34;before-you-begin&#34;&gt;Before you begin&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;../../working-with-panels/add-panel/&#34;&gt;Add a panel to a dashboard&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;../add-a-field-override/&#34;&gt;Add a field override&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To edit a field override&lt;/strong&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Edit the panel that contains the overrides you want to edit.&lt;/li&gt;
&lt;li&gt;In the panel display options, click the &lt;strong&gt;Overrides&lt;/strong&gt; tab.&lt;/li&gt;
&lt;li&gt;Locate the override that you want to change.&lt;/li&gt;
&lt;li&gt;Perform any of the following:
&lt;ul&gt;
&lt;li&gt;Edit settings on existing overrides or field selection parameters.&lt;/li&gt;
&lt;li&gt;Delete existing override properties by clicking the &lt;strong&gt;X&lt;/strong&gt; next to the property.&lt;/li&gt;
&lt;li&gt;Add an override properties by clicking &lt;strong&gt;Add override property&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;
]]></content><description>&lt;h1 id="edit-a-field-override">Edit a field override&lt;/h1>
&lt;p>Edit a field override when you want to make changes to an override setting.&lt;/p>
&lt;h2 id="before-you-begin">Before you begin&lt;/h2>
&lt;ul>
&lt;li>&lt;a href="../../working-with-panels/add-panel/">Add a panel to a dashboard&lt;/a>.&lt;/li>
&lt;li>&lt;a href="../add-a-field-override/">Add a field override&lt;/a>.&lt;/li>
&lt;/ul>
&lt;p>&lt;strong>To edit a field override&lt;/strong>:&lt;/p></description></item><item><title>Delete a field override</title><link>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/delete-a-field-override/</link><pubDate>Sat, 04 Apr 2026 12:26:57 +0000</pubDate><guid>https://grafana.com/docs/grafana/v8.4/panels/override-field-values/delete-a-field-override/</guid><content><![CDATA[&lt;h1 id=&#34;delete-a-field-override&#34;&gt;Delete a field override&lt;/h1&gt;
&lt;p&gt;Delete a field override when you no longer need it.&lt;/p&gt;
&lt;p&gt;When you delete an override, the appearance of value defaults to its original format. This change impacts dashboards and dashboard users that rely on an affected panel.&lt;/p&gt;
&lt;h2 id=&#34;before-you-begin&#34;&gt;Before you begin&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&#34;../../working-with-panels/add-panel/&#34;&gt;Add a panel to a dashboard&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;a href=&#34;../add-a-field-override/&#34;&gt;Add a field override&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;To delete a field override&lt;/strong&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Edit the panel that contains the override you want to delete.&lt;/li&gt;
&lt;li&gt;In panel display options, click the &lt;strong&gt;Overrides&lt;/strong&gt; tab.&lt;/li&gt;
&lt;li&gt;Click the override you want to delete and then click the associated trash icon.&lt;/li&gt;
&lt;/ol&gt;
]]></content><description>&lt;h1 id="delete-a-field-override">Delete a field override&lt;/h1>
&lt;p>Delete a field override when you no longer need it.&lt;/p>
&lt;p>When you delete an override, the appearance of value defaults to its original format. This change impacts dashboards and dashboard users that rely on an affected panel.&lt;/p></description></item></channel></rss>