> For the complete documentation index, see [llms.txt](https://a10gui.gitbook.io/dgp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://a10gui.gitbook.io/dgp/master.md).

# Getting Started

## Installation

To install the stable version:

```
$ npm i -D git+ssh://git@github.com:a10networks/a10-gui-dgp-viz.git
```

For Yarn:

```
$ yarn add -D git+ssh://git@github.com:a10networks/a10-gui-dgp-viz.git
```

### Demo Page

```
$ yarn start
```

And then the demo page will be shown on `http://localhost:9999/`.

For more detail of the demo page please refer to `devUI/DashboardTest.tsx`.

### Vizs Usage

```jsx
import { Viz } from 'a10-gui-dgp-viz'

const { MapChart } = Viz
const render = props => <MapChart {...props} />
```
