Skip to content

Commit 7801d1e

Browse files
Saleh98aShahak Yosef
authored and
Shahak Yosef
committed
Merged PR 154397: [Embedded] Support Zoom Programmatically
Added getter and setter for zoom methods in Report class. Related Work Item: #527743 Related PRs: - Models : https://powerbi.visualstudio.com/DefaultCollection/Embedded/_git/powerbi-models/pullrequest/154398 - PBIClients : https://powerbi.visualstudio.com/PowerBIClients/_git/PowerBIClients/pullrequest/154396 Related work items: #527743
1 parent 0d6bb1a commit 7801d1e

File tree

6 files changed

+178
-62
lines changed

6 files changed

+178
-62
lines changed

dist/powerbi-client.d.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// powerbi-client v2.18.5
1+
// powerbi-client v2.18.6
22
// Copyright (c) Microsoft Corporation.
33
// Licensed under the MIT License.
44
declare module "config" {
@@ -1564,6 +1564,16 @@ declare module "report" {
15641564
* @hidden
15651565
*/
15661566
private isMobileSettings;
1567+
/**
1568+
* Return the current zoom level of the report.
1569+
* @returns {Promise<number>}
1570+
*/
1571+
getZoom(): Promise<number>;
1572+
/**
1573+
* Sets the report's zoom level.
1574+
* @param zoomLevel zoom level to set
1575+
*/
1576+
setZoom(zoomLevel: number): Promise<void>;
15671577
}
15681578
}
15691579
declare module "create" {

0 commit comments

Comments
 (0)