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

# Dashboards

> A Quickstart Guide To Start Using Dashboards

## When To Use Dashboards

Dashboard are a powerful tool for teams to easily view, share, and compare key model health metrics. Explore the dashboard [widget](/ax/machine-learning/machine-learning/how-to-ml/dashboards/widgets) and [templates](/ax/machine-learning/machine-learning/how-to-ml/dashboards/templates) pages to dive into dashboard use cases for your ad hoc analysis.

<Columns cols={3}>
  <Card title="✅ Check Key Metrics Daily">
    *Suggested templates: Top Features, Feature Slice Performance, Feature
    Drift*.
  </Card>

  <Card title="🔍 Investigate Root Causes">
    *Suggested templates: Regression, Classification, Ranking Performance,
    Pre-Production Performance*
  </Card>

  <Card title="📈 Identify Trends">
    *Suggested templates: Compare A/B, Production vs. Training, Drift Monitors*
  </Card>
</Columns>

#### Sharing Dashboards With Your Team

Share dashboards across teams to easily communicate ML model analytics. Simply copy the dashboard URL to share with your team.

## How To Create A Dashboard

Dashboards are composed of [widgets](/ax/machine-learning/machine-learning/how-to-ml/dashboards/widgets) that you can assemble from scratch or create via pre-existing [templates](/ax/machine-learning/machine-learning/how-to-ml/dashboards/templates).

Learn how to create a new dashboard below.

[](/ax/machine-learning/machine-learning/how-to-ml/dashboards#create-a-dashboard-via-ui)
[](/ax/machine-learning/machine-learning/how-to-ml/dashboards#create-a-dashboard-via-graphql)
[](/ax/machine-learning/machine-learning/how-to-ml/dashboards#export-data-from-a-dashboard-widget)

<Columns cols={3}>
  <Card>
    [**Create A Dashboard Via
    UI**](/ax/machine-learning/machine-learning/how-to-ml/dashboards#create-a-dashboard-via-ui)
  </Card>

  <Card>
    [**Create A Dashboard Via
    GraphQL**](/ax/machine-learning/machine-learning/how-to-ml/dashboards#create-a-dashboard-via-graphql)
  </Card>

  <Card>
    [**Export Data From A Dashboard
    Widget**](/ax/machine-learning/machine-learning/how-to-ml/dashboards#export-data-from-a-dashboard-widget)
  </Card>
</Columns>

## Create A Dashboard via UI

#### Step 1: Pick A Template

Use a template to easily create a new dashboard view. Learn more about templates [here](/ax/machine-learning/machine-learning/how-to-ml/dashboards/templates).

<Frame caption="">
  <img src="https://storage.googleapis.com/arize-phoenix-assets/assets/images/arize-docs-images/e29d9982-image.jpeg" />
</Frame>

#### Step 2: Specify Model Parameters

Fill in your dashboard name, model, and other required fields.

<Frame caption="">
  <img src="https://storage.googleapis.com/arize-phoenix-assets/assets/images/arize-docs-images/1e618ba3-image.jpeg" />
</Frame>

#### Step 3: Edit & Add Widgets

Edit and add new widgets to customize your dashboard. Learn more about how to use widgets [here](/ax/machine-learning/machine-learning/how-to-ml/dashboards/widgets).

<Frame caption="">
  <img src="https://storage.googleapis.com/arize-phoenix-assets/assets/images/arize-docs-images/3fc169e9-image.jpeg" />
</Frame>

## Create A Dashboard via GraphQL

Programmatically create any dashboard using `CreateDashboardFromTemplateMutationInput` in the [GraphQL explorer](/ax/graphql-reference).

```php theme={null}
mutation {
  createDashboardFromTemplate(input: {
    name: "example monitor dashboard",
    modelId: "example1id", #add cooresponding model id
    modelVersionIds: [],
    modelBId: "",
    modelBVersionIds: [],
    template: driftMonitor, #select template
    positiveClass: null,
    featureValues: [],
    numSlices: 0,
    monitorIds: [],

  }) {
    dashboard {
      id
      monitorLineChartWidgets{
        edges{
          node{
            monitor{
              ...on WidgetMonitor{
                id
                name
              }
            }
          }
        }
      }
    }
  }
}
```

## Export Data From A Dashboard Widget

Export dashboard data to[Phoenix](https://arize.com/docs/phoenix) or a notebook for detailed analysis

<Frame caption="">
  <img src="https://storage.googleapis.com/arize-phoenix-assets/assets/images/arize-docs-images/Dashboard.gif" />
</Frame>

<Info>
  Questions? Email us at [support@arize.com](mailto::support@arize.com) or [Slack us](https://arize-ai.slack.com/) in the #arize-support channel
</Info>
