You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Creates new Visual object given a name of the visual.
152
+
* Creates a Visual object given a name for the visual.
154
153
*
155
154
* Normally you would get Visual objects by calling `page.getVisuals()` but in the case
156
-
* that the visual name is known and you want to perform an action on a visaul such as setting a filters
155
+
* that the visual name is known and you want to perform an action on a visual such as setting a filter
157
156
* without having to retrieve it first you can create it directly.
158
157
*
159
-
* Note: Since you are creating the visual manually there is no guarantee that the visual actually exists in the report and the subsequence requests could fail.
158
+
* Note: Because you are creating the visual manually there is no guarantee that the visual actually exists in the report and the subsequence requests could fail.
Copy file name to clipboardExpand all lines: src/powerbi.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@ declare global {
34
34
}
35
35
36
36
/**
37
-
* Make PowerBi available on global object for use in apps without module loading support.
38
-
* Save class to allow creating an instance of the service.
39
-
* Create instance of class with default config for normal usage.
37
+
* Makes Power BI available to the global object for use in applications that don't have module loading support.
38
+
*
39
+
* Note: create an instance of the class with the default configuration for normal usage, or save the class so that you can create an instance of the service.
* Normally you would get Page objects by calling `report.getPages()` but in the case
144
+
* Normally you would get Page objects by calling `report.getPages()`, but in the case
145
145
* that the page name is known and you want to perform an action on a page without having to retrieve it
146
146
* you can create it directly.
147
147
*
148
-
* Note: Since you are creating the page manually there is no guarantee that the page actually exists in the report and the subsequence requests could fail.
148
+
* Note: Because you are creating the page manually there is no guarantee that the page actually exists in the report, and subsequent requests could fail.
0 commit comments