> ## Documentation Index
> Fetch the complete documentation index at: https://axiom.co/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Table

> This section explains how to create table dashboard elements and add them to your dashboard.

export const elementName_0 = "table"

export const elementButtonLabel_0 = "Table"

The table dashboard element displays a summary of any attributes from your metrics, logs, or traces in a sortable table format. Each row in the table could represent a different service, host, or other entity, with columns showing various attributes or metrics for that entity.

## Prerequisites

* [Create an Axiom account](https://app.axiom.co/register).
* [Create a dataset in Axiom](/reference/datasets) where you send your data.
* [Send data](/send-data/methods) to your Axiom dataset.
* [Create an empty dashboard](/dashboards/create).

## Create {elementName_0}

1. Go to the Dashboards tab and open the dashboard to which you want to add the {elementName_0}.
2. Click <Icon icon="plus" iconType="regular" /> **Add element** in the top right corner.
3. Click **{elementButtonLabel_0}** from the list.
4. Choose one of the following:
   * Click **Builder** to create your chart using a visual query builder. For more information, see [Create chart using visual query builder](/dashboard-elements/create#create-chart-using-visual-query-builder).
   * Click **APL** to create your chart using the Axiom Processing Language (APL). Create a chart in the same way you create a chart in the APL query builder of the [Query tab](/query-data/explore#create-a-query-using-apl).
5. Optional: [Configure the dashboard element](/dashboard-elements/configure).
6. Click **Save**.

The new element appears in your dashboard. At the bottom, click **Save** to save your changes to the dashboard.

## Example with Builder

<Frame>
  <img src="https://mintcdn.com/axiom/6UXjyyx-ZiWeEcux/doc-assets/shots/table-chart-simple.png?fit=max&auto=format&n=6UXjyyx-ZiWeEcux&q=85&s=6947df52676ccc4bf1110f0dc4345e61" alt="Table example with Builder" width="1417" height="511" data-path="doc-assets/shots/table-chart-simple.png" />
</Frame>

## Example with APL

```kusto  theme={null}
['sample-http-logs']
| summarize avg(resp_body_size_bytes) by bin_auto(_time)
```

<Frame>
  <img src="https://mintcdn.com/axiom/6UXjyyx-ZiWeEcux/doc-assets/shots/table-chart-apl.png?fit=max&auto=format&n=6UXjyyx-ZiWeEcux&q=85&s=6257ec97e2d3b700d64b5c6655b0d5b8" alt="Table example with APL" width="1439" height="979" data-path="doc-assets/shots/table-chart-apl.png" />
</Frame>


Built with [Mintlify](https://mintlify.com).