mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
49 lines
1.3 KiB
Markdown
49 lines
1.3 KiB
Markdown
+++
|
|
# -----------------------------------------------------------------------
|
|
# Do not edit this file. It is automatically generated by API Documenter.
|
|
# -----------------------------------------------------------------------
|
|
title = "AngularLoader"
|
|
keywords = ["grafana","documentation","sdk","@grafana/runtime"]
|
|
type = "docs"
|
|
+++
|
|
|
|
## AngularLoader interface
|
|
|
|
Used to load an Angular component from the context of a React component. Please see the [AngularComponent](./runtime/angularcomponent.md) for a proper example.
|
|
|
|
<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 |
|
|
| --- | --- | --- |
|
|
| 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. |
|
|
|
|
<b>Returns:</b>
|
|
|
|
`AngularComponent`
|
|
|