@@ -16,7 +16,7 @@ Existing users of the package please refer to Change Log [here](https://github.c
1616
1717` npm i powerbi-report-component `
1818
19- ## Usuage for Report
19+ ## Usage for Report
2020
2121``` javascript
2222import React , {Component } from ' react' ;
@@ -25,7 +25,7 @@ import { Report } from 'powerbi-report-component';
2525class MyComponent extends Component {
2626 constructor (props ) {
2727 super (props);
28- this .report = null ; // to store the loaded report's object to perform operations like print, fullscreen etc..
28+ this .report = null ; // to store the loaded report's object to perform operations like print, full screen etc..
2929 }
3030 ...
3131 handleDataSelected = (data ) => {
@@ -63,7 +63,7 @@ class MyComponent extends Component {
6363 const extraSettings = {
6464 filterPaneEnabled: false , // true
6565 navContentPaneEnabled: false , // true
66- hideErrors: false // Use this *only* when you want to overide error experience i.e, use onError
66+ hideErrors: false // Use this *only* when you want to override error experience i.e, use onError
6767 // ... more custom settings
6868 };
6969 return (
@@ -93,7 +93,7 @@ class MyComponent extends Component {
9393
9494```
9595
96- ## Usuage for Dashboard
96+ ## Usage for Dashboard
9797
9898``` javascript
9999import { Dashboard } from ' powerbi-report-component' ;
@@ -116,7 +116,7 @@ import { Dashboard } from 'powerbi-report-component';
116116/ >
117117```
118118
119- ## Usuage for Tile
119+ ## Usage for Tile
120120
121121``` javascript
122122import { Tile } from ' powerbi-report-component' ;
@@ -188,7 +188,7 @@ export default MyReport;
188188
189189## Report features and props you can pass into the component
190190
191- Inside your compoent where you're using { Report } component.
191+ Inside your component where you're using { Report } component.
192192
193193_ Constructor:_
194194
@@ -514,7 +514,7 @@ onClick = {(data) => {
514514}}
515515```
516516
517- For playgroud visit:
517+ For playground visit:
518518
519519> http://akshay5995.github.io/powerbi-report-component
520520
0 commit comments