Skip to content

Commit e1f7125

Browse files
authored
Live publish
2 parents 5fc069f + 13c097d commit e1f7125

File tree

13 files changed

+119
-52
lines changed

13 files changed

+119
-52
lines changed

powerapps-docs/developer/component-framework/component-framework-for-canvas-apps.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,16 @@ To add code components to a canvas app:
8181

8282
## Delete a code component
8383

84-
To delete a code component from a canvas app, select the code component that you want to delete and then select the **Delete** button on the menu. When the code component is deleted from the app, all the code component elements get deleted from the app and the app package.
84+
To delete a code component from a canvas app:
85+
86+
1. Open the app where you have added the code component.
87+
1. Select the **Tree view** icon from the left pane and select the screen where you have added the code component.
88+
1. Select **ellipse (...)** next to the code component and select **Delete**.
89+
90+
> [!div class="mx-imgBorder"]
91+
> ![Delete code component](media/delete-code-component.png "Delete code component")
92+
93+
1. Save the app to see the changes.
8594

8695
## Update existing code components
8796

Loading

powerapps-docs/developer/model-driven-apps/clientapi/reference/formContext-data-process/activeprocess/setActiveProcess.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ search.app:
2222

2323
If there is an active instance of the process, the entity record is loaded with the process instance ID. If there is no active instance of the process, a new process instance is created and the entity record is loaded with the process instance ID. If there are multiple instances of the current process, the record is loaded with the first instance of the active process as per the defaulting logic, that is the most recently used process instance per user.
2424

25+
> [!NOTE]
26+
> The `setActiveProcess` method should be used while creating or editing a record. Use the `setActiveProcess` method to set the active process for a business process flow instead of `processId` and `porocessInstanceId` with `Xrm.Navigation.openForm` method .
27+
2528
## Syntax
2629

2730
`formContext.data.process.setActiveProcess(processId, callbackFunction);`

powerapps-docs/maker/canvas-apps/powerapps-custom-visual.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: conceptual
88
ms.custom: canvas
99
ms.reviewer: tapanm
10-
ms.date: 05/29/2020
10+
ms.date: 09/22/2020
1111
ms.author: ropur
1212
search.audienceType:
1313
- maker
@@ -69,7 +69,7 @@ Let's look at the steps required to use the Power Apps visual in your Power BI r
6969
The following limitations apply to the Power Apps visual:
7070

7171
- Power Apps visual isn't supported for [guest users](share-app.md#share-with-guests).
72-
- Power Apps visual isn't supported in sovereign clouds.
72+
- Power Apps visual doesn't support multi-level embedding of Power Apps in Sovereign clouds. For example, embedding a Power BI report with Power Apps visual to a SharePoint page, or further embedding that SharePoint page to a Teams channel isn't supported on sovereign clouds.
7373
- If you change the data fields associated with the visual, you must edit the app from within the Power BI service by selecting the ellipsis (...) and then selecting **Edit**. Otherwise, the changes won't be propagated to Power Apps, and the app will behave in unexpected ways.
7474
- The Power Apps visual can't trigger a refresh of Power BI reports and Power BI data sources from within Power BI Desktop. If you write back data from the app to the same data source as the report, your changes won't be reflected immediately in Power BI Desktop. Changes are reflected on the next scheduled refresh.
7575
- The Power Apps visual can't filter the data or send any data back to the report.

powerapps-docs/maker/portals/compose-page.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: neerajnandwana-msft
55
ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom:
8-
ms.date: 07/20/2020
8+
ms.date: 09/22/2020
99
ms.author: nenandw
1010
ms.reviewer: tapanm
1111
---
@@ -72,17 +72,17 @@ Once you add sections to your page, you can add portal components inside the sec
7272

7373
6. In the properties pane on the right side of the screen, enter or select the following information:
7474

75-
- **Min Height**: Enter the minimum height of the section. If you add a component that occupies more space than the specified height, the section expands to accommodate the component. By default, the minimum height is 100 px. You can also enter the height in points (pt) and percentage (%).
75+
- **Min Height**: Enter the minimum height of the section. If you add a component that occupies more space than the specified height, the section expands to accommodate the component. By default, the minimum height is 100 px. You can also enter the height in points (pt) and percentage (%).
7676

7777
> [!div class=mx-imgBorder]
78-
> ![Alignment in the section](media/section-props-height.png "Alignment in the section")
78+
> ![Min Height](media/section-props-height.png "Min Height")
7979
80-
- **Alignment**: Select whether the component in the section must be left, center, or right aligned.
80+
- **Alignment**: Select whether the component in the section must be left, center, or right aligned.
8181

8282
> [!div class=mx-imgBorder]
8383
> ![Alignment in the section](media/section-props-align.png "Alignment in the section")
8484
85-
- **Background**: Select if you'd like to have color or an image as the section background.
85+
- **Background**: Select if you'd like to have color or an image as the section background.
8686

8787
- **Fill**: Select a color for the background.
8888

@@ -405,14 +405,14 @@ To add a Power BI component to a web page:
405405

406406
![Apply roles](media/apply-roles-powerbi.png "Apply roles")
407407

408-
- You can enter multiple roles separated by a comma (for example, ```role_1,role_2```). For more information on defining roles in Power BI, go to [Row-level security (RLS) with Power BI](https://docs.microsoft.com/power-bi/service-admin-rls). <br>
408+
- You can enter multiple roles separated by a comma (for example, `role_1,role_2`). For more information on defining roles in Power BI, go to [Row-level security (RLS) with Power BI](https://docs.microsoft.com/power-bi/service-admin-rls). <br>
409409
- Only available for access type **Embed for your customer**.
410410

411411
1. **Apply filter**: Allows user to load the report with pre-filtered values. User can provide filter condition in the field.
412412

413413
![Apply filter](media/apply-filter-powerbi.png "Apply filter")
414414

415-
- Filter parameter must be without ```?filter=``` prefix. For example, ```Table/Field eq 'value'```.
415+
- Filter parameter must be without `?filter=''` prefix. For example, `Table/Field eq 'value'`.
416416
<br> For more information, go to [filter parameter details](https://docs.microsoft.com/power-bi/service-url-filters).
417417
- Only available for **Reports** with access types **Embed for your customer** and **Embed for your organization**.
418418

@@ -469,4 +469,5 @@ Embedding multiple Power BI workspaces may need additional considerations. Refer
469469

470470
### See also
471471

472-
[Microsoft Learn: Integration with Power BI](https://docs.microsoft.com/learn/modules/portals-integration/3-power-bi)
472+
- [Create and manage web pages](create-manage-webpages.md)
473+
- [Microsoft Learn: Integration with Power BI](https://docs.microsoft.com/learn/modules/portals-integration/3-power-bi)

powerapps-docs/maker/portals/configure/add-chart.md

Lines changed: 48 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,32 @@
11
---
2-
title: "Add a chart to a webpage in a portal | MicrosoftDocs"
2+
title: "Add a chart created in a model-driven app to a webpage in portal"
33
description: "Instructions to add a chart created in a model-driven app to a webpage in the portal."
44
author: sandhangitmsft
55
ms.service: powerapps
66
ms.topic: conceptual
77
ms.custom:
8-
ms.date: 01/29/2020
8+
ms.date: 09/22/2020
99
ms.author: sandhan
1010
ms.reviewer: tapanm
1111
---
1212

1313
# Add a chart created in a model-driven app to a webpage in portal
1414

15-
You add a chart to a webpage by using a Liquid tag named [Chart](../liquid/portals-entity-tags.md#chart). You can add the chart Liquid tag in the **Copy** field on a webpage or in the **Source** field on a [Web template](../liquid/store-content-web-templates.md).
15+
You add a chart to a webpage by using a Liquid tag named [Chart](../liquid/portals-entity-tags.md#chart). You can add the chart Liquid tag in:
16+
17+
- The **Copy** field on a webpage.
18+
- In the **Source** field on a [Web template](../liquid/store-content-web-templates.md).
1619

17-
For example, {% chart id:EE3C733D-5693-DE11-97D4-00155DA3B01E %}
20+
For example, `{% chart id:EE3C733D-5693-DE11-97D4-00155DA3B01E %}`
1821

1922
![Chart example](../media/dynamics365-chart-example.png "Chart example")
2023

2124
You can also specify the ID of a view (saved query) to filter the query. For example:
2225

26+
```
2327
<!—Leads by Source – Open Leads -->
24-
2528
{% chart id:"EE3C733D-5693-DE11-97D4-00155DA3B01E" viewid:"00000000-0000-0000-00AA-000010001006" %}
29+
```
2630

2731
## Get the ID of a chart
2832

@@ -34,13 +38,13 @@ You can also specify the ID of a view (saved query) to filter the query. For exa
3438
![Export a chart](../media/export-dynamics365-chart.png "Export a chart")
3539

3640
5. Open the XML file of the exported chart in a text editor.
37-
6. Copy the value of the \<visualizationid\> tag.
41+
6. Copy the value of the `<visualizationid>` tag.
3842

3943
![Get chartid for a chart](../media/dynamics365-chart-chartid.png "Get the chart ID for a chart")
4044

41-
7. Paste the visualizationid value into your Liquid chart tag declaration for the chart ID parameter, for example:
45+
7. Paste the `visualizationid` value into your Liquid chart tag declaration for the chart ID parameter, for example:
4246

43-
{% chart id:EE3C733D-5693-DE11-97D4-00155DA3B01E %}.
47+
`{% chart id:EE3C733D-5693-DE11-97D4-00155DA3B01E %}`
4448

4549
## Get the ID of a view
4650

@@ -65,11 +69,39 @@ You must open the view editor to get the view ID to be used with the Liquid char
6569
6670
Read privilege is asserted for the target entity being queried in the chart. For anonymous or authenticated users to be able to view the chart, you must ensure that the appropriate [Entity Permission](assign-entity-permissions.md) records are created and assigned to applicable [web roles](create-web-roles.md).
6771
68-
If permission is not granted, the user will see an access denied message.
72+
If permission isn't granted, the user will see an access denied message.
73+
74+
## Supported charts and chart types
75+
76+
The following chart types are supported in portals:
77+
78+
- Column
79+
- Bar
80+
- Area
81+
- Pie
82+
- Line
83+
- Funnel
84+
85+
Supported configuration for Legend Entries (Series):
86+
87+
- Single Series
88+
- Multiple Series
89+
- Aggregates Types - Sum, Counts, Min, Max, Avg in Single or Multiple Series
90+
- Top X / Bottom X Rules
91+
92+
Supported configuration for Horizontal (Category) Axis Labels:
93+
94+
- Categories on attributes of an entity or linked entity (on attribute data types supported by portals).
95+
- Multiple categories (X-Axis).
96+
- *Group by* and *Order by* on attributes.
97+
- Date Grouping Types – Day, Month, Year on Primary Entity and First Level Linked Entity.
98+
- Date Grouping by Week, Fiscal Year, Fiscal Period, and Quarter are **not supported**.
99+
- Date Grouping on Linked Entity attributes is supported only until the first level of Link.
69100
70101
## Unsupported charts and chart types
71102
72103
The following chart types are currently not supported in portals:
104+
73105
- Doughnut
74106
- Tag
75107
@@ -95,6 +127,13 @@ The following table lists the charts that are currently not supported in portals
95127
| By Subject | bcd3f9a5-913b-e511-80d1-00155db10d2b | knowledgearticle |
96128
| | |
97129
130+
## Other considerations
131+
132+
- Long labels on Horizontal (Category) Axis Label can get overlapped when using a high number of data points on the chart.
133+
- Hovering over currency data types formatting shows values with spaces instead of separators.
134+
- Numeric fields are currently shown in decimal format.
135+
- Horizontal Axis values can show only up-to 15 Labels.
136+
98137
### See also
99138
100139
[Microsoft Learn: Model-driven charts in portals](https://docs.microsoft.com/learn/modules/portals-integration/4-model-driven-charts)

0 commit comments

Comments
 (0)