2020-02-26 17:03:53 +08:00
+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "AngularLoader"
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
type = "docs"
+++
## AngularLoader interface
2020-04-21 16:41:50 +08:00
Used to load an Angular component from the context of a React component. Please see the [AngularComponent ](./runtime/angularcomponent.md ) for a proper example.
2020-02-26 17:03:53 +08:00
< b > Signature< / b >
```typescript
export interface AngularLoader
```
< b > Import< / b >
```typescript
import { AngularLoader } from '@grafana/runtime';
```
< b > Methods< / b >
| Method | Description |
| --- | --- |
| [load(elem, scopeProps, template) ](#load-method ) | |
### load method
< b > Signature< / b >
```typescript
load(elem: any, scopeProps: any, template: string): AngularComponent;
```
< b > Parameters< / b >
| Parameter | Type | Description |
| --- | --- | --- |
2020-04-21 16:41:50 +08:00
| elem | < code > any< / code > | the element that the Angular component will be loaded into. |
| scopeProps | < code > any< / code > | values that will be accessed via the Angular scope. |
| template | < code > string< / code > | template used by the Angular component. |
2020-02-26 17:03:53 +08:00
< b > Returns:< / b >
`AngularComponent`