docs
0
# Reporting System
1
2
Business intelligence, custom reports, graph generation, and data analysis with configurable dashboards.
3
4
## Capabilities
5
6
### Report Management
7
8
```python { .api }
9
class Report(CremeEntity):
10
"""
11
Custom report entity for business intelligence.
12
13
Attributes:
14
- name: str, report name
15
- description: TextField, report description
16
- ct: ContentType, target entity type
17
18
Methods:
19
- execute(): Run report and get results
20
"""
21
```
22
23
### Graph Generation
24
25
```python { .api }
26
class Graph(CremeEntity):
27
"""
28
Graph entity for data visualization.
29
30
Attributes:
31
- name: str, graph name
32
- chart_type: str, chart type (bar, line, pie)
33
34
Methods:
35
- generate(): Create chart data
36
"""
37
```