We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a9b17 commit 4acf90aCopy full SHA for 4acf90a
README.md
@@ -165,11 +165,11 @@ import { ReportVisual } from 'powerbi-report-component';
165
onSelectData={(data) => {
166
console.log('Data from ReportVisual', data);
167
}}
168
- onLoad={(data) => {
+ onLoad={(reportVisual) => {
169
console.log('ReportVisual loaded', data);
170
171
- onRender={(data) => {
172
- console.log('ReportVisual rendered', data);
+ onRender={(reportVisual) => {
+ console.log('ReportVisual rendered', reportVisual);
173
174
/>
175
```
0 commit comments