mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
33 lines
828 B
Markdown
33 lines
828 B
Markdown
# Analytics Generator Component
|
|
|
|
Generates and shows charts for a specific report.
|
|
|
|
## Basic Usage
|
|
|
|
```html
|
|
<adf-analytics-generator
|
|
[reportId]="reportId"
|
|
[reportParamQuery]="reportParamQuery">
|
|
</adf-analytics>
|
|
```
|
|
|
|
## API
|
|
|
|
```ts
|
|
import { AnalyticsGeneratorComponent } from '@alfresco/adf-insights';
|
|
```
|
|
|
|
### Properties
|
|
|
|
| Name | Type | Default value | Description |
|
|
|------------------|---------------|---------------|-------------------|
|
|
| reportId | `string` | | reportId. |
|
|
| reportParamQuery | `ReportQuery` | undefined | reportParamQuery. |
|
|
|
|
### Events
|
|
|
|
| Name | Type | Description |
|
|
|---------|---------------------|-------------|
|
|
| error | `EventEmitter<any>` | error. |
|
|
| success | `EventEmitter<any>` | success. |
|