2023-12-05 11:16:01 +00:00
---
id: access-cellvalue-rowdata
2024-01-03 06:28:43 +00:00
title: Dynamically Change Cell Colors in Table
2023-12-05 11:16:01 +00:00
---
2023-12-20 07:05:01 +00:00
This guide shows how to change the text color and background color of certain cells in a Table component based on specific conditions.
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
## 1. Start by Creating a New Application and Setting up the Data Source
- Create a new app and add a ** [Table ](/docs/widgets/table )** component to the canvas.
- Open the Query Panel at the bottom and click on the `+ Add` button.
- Select REST API as your data source - your query will be named as restapi1 by default.
- Choose GET method and enter the below URL:
```
https://fakestoreapi.com/products
```
- To view the data that your query will return, click on the **Preview** button. Click on the **Run** button to execute the query and retrieve the data.
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
## 2. Display Data on the Table
2023-12-05 11:16:01 +00:00
2024-02-15 06:21:55 +00:00
- Hide the Query Panel and click on the Table component to open its properties panel on the right.
2023-12-20 07:05:01 +00:00
- Under Table Data, enter the below code:
```
{{queries.restapi1.data}}
```
2023-12-05 11:16:01 +00:00
< div style = {{textAlign: ' center ' } } >
2023-12-20 07:05:01 +00:00
< img style = {{ border: ' 0 ' } } className = "screenshot-full" src = "/img/how-to/change-text-color/table-with-data.png" alt = "Table Component With Data" / >
2023-12-05 11:16:01 +00:00
< / div >
2023-12-20 07:05:01 +00:00
## 3. Change Text Color Based on Cell Value
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
- Select the Table component and go to Columns.
- For the `category` column, paste the below code under Text Color to dynamically change the text color based on the value of the cell:
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
```
{{cellValue == 'electronics' ? 'red' : 'green'}}
```
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
Now, if the cell value is `electronics` , the text color will be red; otherwise, it will be green.
2023-12-05 11:16:01 +00:00
< div style = {{textAlign: ' center ' } } >
2023-12-20 07:05:01 +00:00
< img style = {{ border: ' 0 ' , marginBottom: ' 15px ' } } className = "screenshot-full" src = "/img/how-to/change-text-color/conditional-text-color.png" alt = "Conditional Text Color" / >
2023-12-05 11:16:01 +00:00
< / div >
2023-12-20 07:05:01 +00:00
< i > You can use also Hex color codes for more color options.< / i >
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
## 4. Change Text Color Using Row Data
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
- Under Cell Background Color for the `symbol` column, paste the below code:
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
```
{{rowData.price < 100 ? ' yellow ' : ' white ' } }
```
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
The rowData identifier can be utilized to reference values from any column within the Table component.
2023-12-05 11:16:01 +00:00
2023-12-20 07:05:01 +00:00
Now if the value in the price column is lesser than 100, the cell background color will be yellow or else it will be white.
2023-12-05 11:16:01 +00:00
< div style = {{textAlign: ' center ' } } >
2023-12-20 07:05:01 +00:00
< img style = {{ border: ' 0 ' , marginBottom: ' 15px ' } } className = "screenshot-full" src = "/img/how-to/change-text-color/conditional-background-color.png" alt = "Conditional Background Color" / >
2023-12-05 11:16:01 +00:00
< / div >
2023-12-20 07:05:01 +00:00
You can use the above methods to change the text and background colors of a cell dynamically.