Skip to content

Commit c715a9b

Browse files
Merge branch 'main' into jasongre-recordSummaries
2 parents 6b80a96 + 67415b5 commit c715a9b

File tree

53 files changed

+122
-73
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+122
-73
lines changed

powerapps-docs/developer/component-framework/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Power Apps component framework empowers professional developers and app makers t
1919
- Replace a column on a form that displays a numeric text value with a `dial` or `slider` code component.
2020
- Transform a list into an entirely different visual experience bound to the dataset, like a `Calendar` or `Map`.
2121

22-
> [!VIDEO https://www.microsoft.com/en-us/videoplayer/embed/RE4slRe]
22+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=69a0fdf4-5b3c-461e-b921-94aad4b7f717]
2323
2424

2525
> [!IMPORTANT]

powerapps-docs/developer/model-driven-apps/view-data-with-visualizations-charts.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "View data with visualizations (charts) (model-driven apps)"
3-
description: "Visualizations let you see your business data graphically. A visualization is attached to a table in Microsoft Dataverse. You can attach multiple visualizations to a table, however, only one visualization can be displayed at a time along-side a grid. You can view multiple visualizations at the same time by using a dashboard."
3+
description: "Visualizations let you see your business data graphically. A visualization is attached to a table in Microsoft Dataverse. You can attach multiple visualizations to a table, however, only one visualization can be displayed at a time alongside a grid. You can view multiple visualizations at the same time by using a dashboard."
44
author: jasongre
55
ms.author: jasongre
6-
ms.date: 12/04/2024
6+
ms.date: 01/10/2025
77
ms.reviewer: jdaly
88
ms.subservice: mda-developer
99
search.audienceType:
@@ -13,10 +13,13 @@ contributors:
1313
---
1414
# View data with visualizations (charts)
1515

16-
Visualizations let you see your business data graphically. A visualization is attached to a table in Microsoft Dataverse. You can attach multiple visualizations to a table, however, only one visualization can be displayed at a time along-side a grid. You can view multiple visualizations at the same time by using a dashboard. More information: [Analyze data with dashboards](analyze-data-with-dashboards.md)
16+
Visualizations let you see your business data graphically. A visualization is attached to a table in Microsoft Dataverse. You can attach multiple visualizations to a table, however, only one visualization can be displayed at a time alongside a grid. You can view multiple visualizations at the same time by using a dashboard. More information: [Analyze data with dashboards](analyze-data-with-dashboards.md)
1717

1818
You can use a chart or a web resource as a visualization in Dataverse. For charts, you can use the chart designer in model-driven apps. However, to use a web resource in a visualization, you must either use the SDK or import a custom visualization XML into model-driven apps.
1919

20+
> [!IMPORTANT]
21+
> The XML of an imported chart when encoded to a base64 string has a maximum length of 16,000 characters. This string represents roughly 12,000 characters before encoding.
22+
2023
[!INCLUDE[cc-terminology](../data-platform/includes/cc-terminology.md)]
2124

2225
<a name="VisualizationTypes"></a>
@@ -25,11 +28,11 @@ You can use a chart or a web resource as a visualization in Dataverse. For chart
2528

2629
In model-driven apps, there are two types of visualization ownership: organization-owned and user-owned.
2730

28-
- An organization-owned visualization is owned by an organization, and cannot be assigned or shared. The `SavedQueryVisualization` table represents the organization-owned visualization. These visualizations are solution-aware tables in model-driven apps. Whenever you update a saved query visualization, you must publish the changes for the updates to be available across the organization by using the <xref:Microsoft.Crm.Sdk.Messages.PublishAllXmlRequest> message. This table is referred to as a *System Chart* in the model-driven apps web application.
31+
- Organization-owned visualizations can't be assigned or shared. The `SavedQueryVisualization` table represents the organization-owned visualization. These visualizations are solution-aware tables in model-driven apps. Whenever you update a saved query visualization, you must publish the changes for the updates to be available across the organization by using the <xref:Microsoft.Crm.Sdk.Messages.PublishAllXmlRequest> message. This table is referred to as a *System Chart* in the model-driven apps web application.
2932

30-
- A user-owned visualization is owned by an individual user, and can be assigned and shared with other users and teams. The `UserQueryVisualization` table represents the user-owned visualization. This table is referred to as a *User Chart* in the model-driven apps web application, and is displayed under **My Charts** in the chart drop-down list.
33+
- User-owned visualizations can be assigned and shared with other users and teams. The `UserQueryVisualization` table represents the user-owned visualization. This table is referred to as a *User Chart* in the model-driven apps web application, and is displayed under **My Charts** in the chart drop-down list.
3134

32-
A user query visualization is not associated with a user query (view), despite the table name. The view aspect of this table is used only for setting the filter criteria.
35+
A user query visualization isn't associated with a user query (view), despite the table name. The view aspect of this table is used only for setting the filter criteria.
3336

3437
<a name="Charts"></a>
3538

@@ -41,7 +44,7 @@ These charts are integrated with the grids in the web application. When you appl
4144

4245
A chart attached to a table is available for all the views for the table. A chart displays data according to the currently selected (or displayed) view of a table. A chart can display data from both a saved query (organization-owned view) and a user query (user-owned view).
4346

44-
Charts display data for only those saved queries (organization-owned views) that use FetchXML (`SavedQuery.FetchXml`) to filter the records. If a saved query uses the query API (`SavedQuery.QueryAPI`) to filter the records, the chart will not appear for that saved query. This limitation is not applicable for user queries (user-owned views) because the user query table does not use the `QueryAPI` to filter the records.
47+
Charts display data for only those saved queries (organization-owned views) that use FetchXML (`SavedQuery.FetchXml`) to filter the records. If a saved query uses the query API (`SavedQuery.QueryAPI`) to filter the records, the chart don't appear for that saved query. This limitation isn't applicable for user queries (user-owned views) because the user query table doesn't use the `QueryAPI` to filter the records.
4548

4649
For more information about how to work with charts, see [Understanding Charts: Underlying data and chart representation](understand-charts-underlying-data-chart-representation.md).
4750

@@ -51,24 +54,24 @@ For more information about how to work with charts, see [Understanding Charts: U
5154

5255
Microsoft Chart Controls is used to build charts in model-driven apps. Microsoft Chart Controls enable you to create various chart types such as column, bar, area, stacked, line, bubble, and pie.
5356

54-
The following chart types are supported out-of-box in Dataverse: *Column*, *Area*, *Bar*, *Line*, *Pie*, and *Funnel*. However, you can extend the functionality by creating other supported Microsoft Chart Controls chart types such as multi-series, stacked, and 100% stacked (comparison) charts by specifying appropriate content in the data description and presentation description XML strings for a chart. More information: [Specifying Chart Data](understand-charts-underlying-data-chart-representation.md)
57+
The following chart types are supported out-of-box in Dataverse: *Column*, *Area*, *Bar*, *Line*, *Pie*, and *Funnel*. You can extend the functionality by creating other supported Microsoft Chart Controls chart types such as multi-series, stacked, and 100% stacked (comparison) charts by specifying appropriate content in the data description and presentation description XML strings for a chart. [Learn more about specifying chart data](understand-charts-underlying-data-chart-representation.md)
5558

5659
<a name="WebResources"></a>
5760

5861
## Web resource visualizations
5962

60-
Web resources are virtual files that are stored in the model-driven apps database and may be retrieved using a unique URL address. You can display an existing web resource as a visualization, and display it in the **Charts** area in model-driven apps together with other charts for a table. For more information about web resources, see [Web resources for model-driven apps](web-resources.md).
63+
Web resources are virtual files that are stored in the model-driven apps database and can be retrieved using a unique URL address. You can display an existing web resource as a visualization, and display it in the **Charts** area in model-driven apps together with other charts for a table. For more information about web resources, see [Web resources for model-driven apps](web-resources.md).
6164

6265
You can use the following types of web resources in a visualization: [Webpage (HTML) web resources](webpage-html-web-resources.md) and [Image (JPG, PNG, GIF, ICO) web resources](image-web-resources.md). For more information about how to create a visualization with a web resource, see [Create a web resource visualization](create-visualization-chart.md#create-a-web-resource-visualization).
6366

6467

6568
## Tables supported for visualizations
6669

67-
You can create and attach visualizations to only those tables in Dataverse that support the new ribbon interface. This is because all of the chart controls are only present in the ribbon interface of Dataverse. Custom tables are also supported for visualizations. You can turn off the visualization support for custom tables if you want to. However, you cannot disable visualization support for the default tables.
70+
You can create and attach visualizations to only those tables in Dataverse that support the new ribbon interface. Supporting the new ribbon interface is required because all of the chart controls are only present in the ribbon interface of Dataverse. Custom tables are also supported for visualizations. You can turn off the visualization support for custom tables if you want to. However, you can't disable visualization support for the default tables.
6871

69-
The following lists the default tables that are supported for visualizations.
72+
The following lists the default tables that are supported for visualizations.
7073

71-
Account
74+
Account
7275
ActivityPointer
7376
Appointment
7477
BulkOperation

powerapps-docs/maker/TOC.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2098,6 +2098,8 @@
20982098
href: ./data-platform/import-update-export-solutions.md
20992099
- name: Set the preferred solution
21002100
href: ./data-platform/preferred-solution.md
2101+
- name: View solution deployments (preview)
2102+
href: ./data-platform/maker-deployment-area.md
21012103
- name: Use pipelines to simplify solution deployment
21022104
href: ./data-platform/use-pipelines.md
21032105
- name: Update or upgrade solutions

powerapps-docs/maker/canvas-apps/add-images-pictures-audio-video.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This article walks you through working with multimedia, streaming, and input con
2727
[Sign up](../signup-for-powerapps.md) for Power Apps, and then [sign in](https://make.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc) using the same credentials that you used to sign up.
2828

2929
Watch this video to learn how to use multimedia files in canvas apps:
30-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWLAk7]
30+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=d8fdba22-a9cf-4ce4-a77d-7c7be89666bc]
3131
3232
## Add media from a file or the cloud
3333

powerapps-docs/maker/canvas-apps/app-from-sharepoint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The principles of generating an app won't change even if you create a list that'
3939
> Power Apps doesn't support all types of SharePoint data. For more information, see [Known issues](connections/connection-sharepoint-online.md#known-issues).
4040
4141
Watch this video to learn how to create a canvas app from a list:
42-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWLj3n]
42+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=de3b0fbc-f5b6-4958-855e-109f9c3692ac]
4343
4444

4545
## Create an app from within Power Apps

powerapps-docs/maker/canvas-apps/create-blank-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ In Power Apps, create a blank canvas app that you can then use to customize furt
2424
If you're not signed up for Power Apps, [sign up for free](https://make.powerapps.com?utm_source=padocs&utm_medium=linkinadoc&utm_campaign=referralsfromdoc) before you start.
2525

2626
Watch this short video that shows you how to create a blank canvas app.
27-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RE4YnKM]
27+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=bf419d9e-8021-47d1-8eeb-7d4278d9d2b6]
2828
2929
## Prerequisites
3030

powerapps-docs/maker/canvas-apps/create-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Components are reusable building blocks for canvas apps so that app makers can c
2727
Components are useful in building larger apps that have similar control patterns. If you update a component definition inside the app, all instances in the app reflect your changes. Components also reduce duplication of efforts by eliminating the need to copy/paste controls and improve performance. Components also help create collaborative development and standardizes look-and-feel in an organization when you use a [component library](component-library.md).
2828

2929
Watch this video to learn how to use components in canvas apps:
30-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWLlkO]
30+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=7ec063b0-df8e-4cf8-b407-72ce6132115f]
3131
3232
## Components in canvas apps
3333

powerapps-docs/maker/canvas-apps/create-update-collection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Use a collection to store data that users can manage in your app. A collection i
2626
- Learn how to [configure a control](add-configure-controls.md) in Power Apps.
2727

2828
Watch this video to learn how to create and update a collection:
29-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWLvLS]
29+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=b709db8a-7d9c-4869-b2f7-76027df3bee0]
3030
3131
## Create a multicolumn collection
3232

powerapps-docs/maker/canvas-apps/customize-list-form.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To follow the steps in this article, you'll create a list so that you can see ho
3131
> - To access custom form, users must have access to the list.
3232
3333
Watch this video to learn how to customize a list form:
34-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWLvLK]
34+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=63bb74da-0828-403f-9005-8f1d74cbea35]
3535
3636
## Requirements
3737

powerapps-docs/maker/canvas-apps/how-to/build-apps-measure-in-mr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Screenshots taken during the mixed reality experience are stored in the **Photos
2929
In this article, we'll create a screen in an app to use the **Measuring camera** control to measure the area of a user-defined space as well as view a photo of the space that was measured.
3030

3131
Watch this video to learn how to build mobile apps with Measuring Camera control:
32-
> [!VIDEO https://www.microsoft.com/videoplayer/embed/RWLPQh]
32+
> [!VIDEO https://learn-video.azurefd.net/vod/player?id=94d7ae60-3cb4-41e5-80bd-d8212fa3e4a8]
3333
3434
## Prerequisites
3535

0 commit comments

Comments
 (0)