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

# Index

> An Object which contains all the information for the index page.

You can see further details in the [graphs](/soft-ui/docs/custom-theme-options#graph) section.

```js theme={null}
theme: SoftUI({
  index: {
    graph: {
      enabled: Boolean,
      lineGraph: Boolean,
      tag: String,
      max: Number,
    },
  },
});
```

## Example Usage

```js theme={null}
theme: SoftUI({
  index: {
    graph: {
      enabled: true,
      lineGraph: false,
      tag: "Memory (MB)",
      max: 100,
    },
  },
});
```

## Props

<ResponseField name="graph" type="Object" required>
  <Expandable title="properties" defaultOpen>
    <ResponseField name="enabled" type="boolean" required>
      Indicate if the graph should be enabled
    </ResponseField>

    <ResponseField name="lineGraph" type="boolean">
      Indicate if the graph should be a line graph
    </ResponseField>

    <ResponseField name="title" type="string">
      The title of the graph
    </ResponseField>

    <ResponseField name="tag" type="string">
      The tag of the graph
    </ResponseField>

    <ResponseField name="max" type="number">
      The max of the graph
    </ResponseField>
  </Expandable>
</ResponseField>
