diff --git a/docs/resources/ui/widgets/built-in-widgets/chart/bar-chart.md b/docs/resources/ui/widgets/built-in-widgets/chart/bar-chart.md
index 7e61a4d82..0f2825d72 100644
--- a/docs/resources/ui/widgets/built-in-widgets/chart/bar-chart.md
+++ b/docs/resources/ui/widgets/built-in-widgets/chart/bar-chart.md
@@ -1,108 +1,39 @@
---
slug: bar-chart
title: Bar Chart
-tags: []
-description: Learn how to add Bar Chart widget in your FlutterFlow project.
+tags: [Charts, Data Visualization]
+description: Learn how to add a Bar Chart widget in your FlutterFlow project.
sidebar_position: 1
---
-import Tabs from '@theme/Tabs';
-import TabItem from '@theme/TabItem';
-
# Bar Chart
-The Bar Chart shows the rectangular bars on a graph whose height varies as per its numeric value and has equal width. This can be used to display categorical information.
-
-For example, you could use the Bar chart to display each year's income and expense value together.
-
-
-## Adding bar chart
-
-Adding a chart comprises of following steps:
-
-1. [Preparing data](#1-preparing-data)
-2. [Adding bar chart widget](#2-adding-bar-chart-widget)
-
-### 1. Preparing data
+A Bar Chart uses rectangular bars to compare values across categories. The height of each bar represents its value. For example, use it to compare income and expenses across different years.
-Before adding the chart widget, you need to prepare the data in the format that the chart widget accepts. The bar chart widget requires label values (runs horizontally from left to right) and Y coordinate values (runs vertically from bottom to top). Together these values (labels and Y coordinate) are used to draw bars on a chart. You can store and retrieve these values in the following ways:
+## Adding a Bar Chart {#adding-bar-chart}
-1. [Firestore Documents](#11-firestore-documents)
-2. [Numbers Lists](#12-numbers-lists)
+To add a **Bar Chart** widget to your project:
-#### 1.1 Firestore Documents
+1. Add the **Chart** widget from **Base Elements** or the widget tree.
+2. In the properties panel, set **Chart Type** to **Bar**.
+3. Open **Chart Data**, then expand **[Bar] Chart Data 1**.
+4. Choose a **Data Source**:
+ - **Firestore Documents:** Select the document list under **Data**, then choose the **Bar Labels Field** and **Bar Values Field**.
+ - **Numbers Lists:** Set the **Bar Labels** and **Bar Values** lists.
+5. To display another data series, click **Add Data** and configure its **Bar Values**. New data series appear side by side unless **Stack Bars** is enabled.
+6. Under **Chart Properties**, adjust the chart's **Width** and **Height** as needed.
-If you use Firebase as the backend, you can create a collection and add the list of documents. Each document entry can be used to draw bars on the chart. Hence you must add at least two fields (one with DataType String and another with DataType Double) in a document that will act as the labels, and the Y coordinates value to draw a bar.
-
-The figure below illustrates the sample collection that draws the two bars (income and expense) for each year.
-
-
-
-:::warning
-The above collection schema is used for simplification. You are free to have your own schema that works best for you.
+:::tip[Using Firestore Documents]
+To use **Firestore Documents**, [**query a collection**](../../../../control-flow/backend-logic/backend-query/query-collection.md) directly on the **Chart** widget or on a top-level widget such as a [**Page**](../../../pages/intro-pages.md) or [**Column**](../../composing-widgets/rows-column-stack.md).
:::
-Here's how the data is used to draw bars on a chart:
-
-
-
-
-#### 1.2 Numbers Lists
-
-The bar chart widget can draw a bar using a list of labels and numbers. You need at least two separate lists with DataType String and Double. One list stores a list of labels to be displayed on the X-axis, whereas the other stores a list of values on the Y-axis. The chart widget uses both variables to draw the bar.
-
-:::info
-The variable can be an app state variable or the action output variable of an API call.
-:::
-
-The figure below illustrates the sample app state variables that draw the two bars (income and expense) for each year.
-
-
-
-:::warning
-A number of values in the Y-axis variable should match the number of labels in the X-axis variable.
-:::
-
-Here's how the number list is used to draw bars on a chart:
-
-
-
-To create the app state variable, please find the instructions [here](../../../../../resources/data-representation/app-state#create-app-state-variable).
-
-### 2. Adding bar chart widget
-
-To add the bar chart widget to your project:
-
-1. Drag the **Chart** widget from the **Base Elements** tab (in the Widget Panel) or add it directly from the widget tree.
-2. Move to the property panel and set the **Chart Type** to **Bar**.
-3. For the Bar Chart, a single **Chart Data** is a **Bar** drawn on the chart. The bar is drawn by providing the data to this. To show the first bar, open the **Chart Data 1** section, and set the **Data Source** to [Firestore Documents](#11-firestore-documents) or [Numbers List](#12-numbers-lists).
-4. If you select **Firestore Documents**:
- 1. Make sure you have access to a list of documents. The list of documents can be retrieved by querying a collection at any top-level widget, such as the **Page** or **Column** widget. You can also query a collection on the Chart widget itself. To query collection on a page:
- 1. Select the **page** and then click on the **Backend Query** tab (on the right side of your screen).
- 2. Set the **Query Type** to **Query Collection**.
- 3. Scroll down to find the **Collection** dropdown and set it to your collection.
- 4. Set the **Query Type** to **List of Documents**.
- 5. To order the labels, you can perform Ordering on a query.
- 6. Click **Save**.
- 2. Set the Source to the **collection_name Documents > Documents (List/)** and click **Confirm** (e.g. *transactions Documents > Documents (List/)*).
- 3. Set the **Bar Labels Field,** whose values will be used as labels, and lay out horizontally from left to right (e.g., day, week, month, year).
- 4. Set the **Bar Values Field,** whose values will be used to draw bars on a chart. This will draw bars for the first chart data (e.g., income data).
-5. If you select **Numbers Lists**:
- 1. Under the **Bar Labels**, click on the **UNSET** and set it to a variable whose values will be used as labels and lay out horizontally from left to right (e.g., day, week, month, year).
- 2. Further options are displayed as per the selected source. For example, if you choose **App State**, The **Available Option** field is displayed that allows you to select the actual variable.
- 3. Under the **Bar Values**, click on the **UNSET** and set it to a variable whose values will be used to draw bars on a chart. This will draw bars for the first chart data (e.g., income data).
-6. Click **Add Data** to show bars for multiple categories (e.g., income and expense). The bars for each new category are displayed next to the previous one. **Note**: When you click **Add Data**, you can only set **Bar Values Field** since the **Bar Labels Field** is already provided in the first **Chart Data**.
-7. Scroll down to the **Chart Properties** section and adjust the **Width** and **Height** properties.
-
-
-