Skip to content

Commit 1626638

Browse files
author
epolevikov
committed
Resolve merge conflict
2 parents 27ec51b + 4b8f199 commit 1626638

File tree

216 files changed

+2596
-1531
lines changed

Some content is hidden

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

216 files changed

+2596
-1531
lines changed

dashboard-for-desktop/articles/dashboard-designer/dashboard-layout.md

Lines changed: 42 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,46 @@ author: Natalia Kazakova
44
legacyId: 16518
55
---
66
# Dashboard Layout
7-
This section describes the features related to the Dashboard layout.
87

9-
The section consists of the following topics.
10-
* [Dashboard Title](dashboard-layout/dashboard-title.md)
11-
* [Dashboard Item Caption](dashboard-layout/dashboard-item-caption.md)
12-
* [Dashboard Items Layout](dashboard-layout/dashboard-items-layout.md)
8+
This topic describes the features related to the dashboard layout in the WinForms Designer.
9+
10+
## Dashboard Width and Height
11+
12+
The control automatically stretches or shrinks content (dashboard items) in a dashboard to fit available screen space. You can adjust the layout options and specify the width and height of content.
13+
14+
In the Ribbon menu, click the **Layout Options** button:
15+
16+
![|layout-options-button-in-ribbon](../../images/layout-options-button-ribbon.png)
17+
18+
This invokes the **Dashboard Layout Options** dialog that allows you to specify the width and height of the dashboard:
19+
20+
![layout-options-dialog](../../images/layout-options-dialog.png)
21+
22+
* _Auto_
23+
24+
The height or width of a dashboard surface fits to content.
25+
* _Fixed_
26+
27+
The height or width of a dashboard surface is set in pixels.
28+
29+
## Dashboard Title
30+
The Dashboard Title is at the top of the dashboard surface and can contain text, images, and command buttons.
31+
32+
![DashboardTitleArea](../../images/img19734.png)
33+
34+
See the following article for more information: [Dashboard Title](dashboard-layout/dashboard-title.md).
35+
## Dashboard Items Layout
36+
37+
The Dashboard Designer allows users to arrange and resize dashboard items and groups using drag-and-drop operations.
38+
39+
![Layout_ItemsLayoutMain](../../images/img20477.png)
40+
41+
See the following article for more information: [Dashboard Items Layout](dashboard-layout/dashboard-items-layout.md).
42+
## Dashboard Item Caption
43+
Dashboard Item Caption is located on the dashboard surface and contains relevant up-to-date information and command buttons.
44+
45+
![DashboardItem_Caption](../../images/img18278.png)
46+
47+
Refer to the following article for details: [Dashboard Item Caption](dashboard-layout/dashboard-item-caption.md).
48+
49+

dashboard-for-desktop/articles/dashboard-designer/data-analysis/aggregations/summary-level-aggregations.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ author: Natalia Kazakova
44
legacyId: 116588
55
---
66
# Summary Level Aggregations
7-
The Dashboard Designer allows you to perform aggregations when constructing a [calculated field expression](../../work-with-data/creating-calculated-fields.md). This allows you to evaluate calculated fields on a summary level.
7+
The Dashboard Designer aggregates data when you construct a [calculated field expression](../../work-with-data/creating-calculated-fields.md). This allows you to evaluate calculated fields on a summary level.
88

9-
In the Dashboard Designer, you can use the following set of predefined aggregate functions.
9+
In the Dashboard Designer, you can use the following set of predefined aggregate functions:
1010

1111
![BlogDashboard_SummaryCalculatedField_Functions](../../../../images/img118142.png)
1212

1313
| Function | Description |
1414
|---|---|
15-
| Aggr(SummaryExpression, Dimensions) | Aggregates underlying data using the detail level specified by a predefined set of dimensions and a specified summary function. To learn more, see [Intermediate Level Aggregations](intermediate-level-aggregations.md). |
15+
| Aggr(SummaryExpression, Dimensions) | Aggregates underlying data using the detail level specified by a predefined set of dimensions and a specified summary function. For more information, see [Intermediate Level Aggregations](intermediate-level-aggregations.md). |
1616
| Avg(Value) | Returns the average of all the values in the expression. |
1717
| Count() | Returns the number of values. |
1818
| CountDistinct(Value) | Returns the number of distinct values. |
@@ -25,4 +25,17 @@ In the Dashboard Designer, you can use the following set of predefined aggregate
2525
| StdDev(Value) | Returns an estimate of the standard deviation of a population where the sample is a subset of the entire population. |
2626
| StdDevp(Value) | Returns the standard deviation of a population where the population is the entire data to be summarized. |
2727

28-
These functions can be used for all types of numeric fields. After creating such calculated fields, you can use them as measures contained in an OLAP cube.
28+
These functions can be used for all types of numeric fields. After creating such calculated fields, you can use them as measures in an OLAP cube.
29+
30+
## Custom Aggregate Functions
31+
32+
Along with the predefined aggregations (like Min, Max, Sum, Avg), the Dashboard supports custom aggregation functions. A custom aggregate function appears in the [Expression Editor](../../../../../interface-elements-for-desktop\articles\expression-editor.md)'s categories if the function was registered in your application.
33+
34+
The following image illustrates the custom _StringConcat_ function in the **Aggregate** function’s category:
35+
36+
![win-custom-aggr-function-in-expression-editor](../../../../images/win-custom-aggr-function-in-expression-editor.png)
37+
38+
Names of custom aggregate functions are stored in the **Custom Aggregate Names** category and can be used as arguments when you create window calculations as _WindowAggregate_ and _RunningAggregate_.
39+
40+
Refer to the following topic for detains: [Calculation Functions Reference](../window-calculations/calculation-functions-reference.md).
41+

dashboard-for-desktop/articles/dashboard-designer/data-analysis/window-calculations/calculation-functions-reference.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,12 @@ This topic contains the descriptions of window functions that can be used to spe
1919
| RankModified(SummaryExpression, [ 'asc' | 'desc' ]) | Returns the modified competition rank for the current row in the window. | RankModified(Sum([Sales]), 'asc') | - |
2020
| RankPercentile(SummaryExpression, [ 'asc' | 'desc' ]) | Returns the percentile rank for the current row in the window. | RankPercentile(Sum([Sales]), 'desc') | - |
2121
| RunningAvg(SummaryExpression) | Returns the running average of the specified expression from the first row in the window to the current row. | RunningAvg(Sum([Sales])) | ![CalculationFunction_RunningAvg](../../../../images/img123020.png) |
22+
| RunningAggregate(SummaryExpression, CustomAggregateName) | Returns the cumulative result of the custom function applied to specified expression from the first row in the window to the current row.| RunningAggregate(Min([City]), 'StringConcat') | ![RunningAggregateFunction](../../../../images/RunningAggregateFunction.png)|
2223
| RunningCount(SummaryExpression) | Returns the running count of the specified expression from the first row in the window to the current row. | RunningCount(Sum([Sales])) | - |
2324
| RunningMax(SummaryExpression) | Returns the running maximum of the specified expression from the first row in the window to the current row. | RunningMax(Sum([Sales])) | ![CalculationFunction_RunningMax](../../../../images/img123021.png) |
2425
| RunningMin(SummaryExpression) | Returns the running minimum of the specified expression from the first row in the window to the current row. | RunningMin(Sum([Sales])) | ![CalculationFunction_RunningMin](../../../../images/img123026.png) |
2526
| RunningSum(SummaryExpression) | Returns the running sum of the specified expression from the first row in the window to the current row. | RunningSum(Sum([Sales])) | ![CalculationFunction_RunningSum](../../../../images/img123027.png) |
27+
| WindowAggregate(SummaryExpression, StartOffset, EndOffset, CustomAggregateName)| Returns the result of the custom function applied to the specified expression in the window.| WindowAggregate(Min([CompanyName]), -1, 1, 'StringConcat')|![windowAggregateFunction](../../../../images/windowAggregateFunction.png) |
2628
| WindowAvg(SummaryExpression, StartOffset, EndOffset) | Returns the average of the expression within the window, which is defined using offsets from the current row. | WindowAvg(Sum([Sales]), First(), Last()) | ![CalculationFunction_WindowAvg](../../../../images/img123031.png) |
2729
| WindowCount(SummaryExpression, StartOffset, EndOffset) | Returns the count of the expression within the window. | WindowCount(Sum([Sales]), First()+2, Last()) | ![CalculationFunction_WindowCount_plus2](../../../../images/img123032.png) |
2830
| WindowCountDistinct(SummaryExpression, StartOffset, EndOffset) | Returns the distinct count of the expression within the window. | WindowCountDistinct(Sum([Sales]), First(), Last()) | - |

dashboard-for-desktop/articles/dashboard-designer/ui-elements.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ legacyId: 17251
66
# UI Elements
77
The topics in this section describe the main elements of a **Dashboard Designer** application.
88

9-
This section consists of the following topics.
9+
This section consists of the following topics:
1010
* [Data Source Browser](ui-elements/data-source-browser.md)
1111
* [Data Items Pane](ui-elements/data-items-pane.md)
12-
* [Print Preview](ui-elements/print-preview.md)
12+
* [Print Preview](ui-elements/print-preview.md)
13+
* [Dashboard Surface](ui-elements/dashboard-surface.md)
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: Dashboard Surface
3+
author: Margarita Zakhodyaeva
4+
---
5+
6+
# Dashboard Surface
7+
8+
The **Dashboard Surface** is the rectangular area that displays the dashboard that you are designing. This area includes [dashboard items](../dashboard-item-settings.md) and the [dashboard title](../dashboard-layout/dashboard-title.md).
9+
10+
![EUDesigner_DashboardSurface](../../../images/eudesigner_dashboardsurface26155.png)
11+
12+
You can configure a dashboard layout in the UI:
13+
14+
* [Dashboard Items Layout](../dashboard-layout/dashboard-items-layout.md)
15+
* [Dashboard Layout](../dashboard-layout.md)
5.32 KB
Loading
50.3 KB
Loading
6.65 KB
Loading
7.74 KB
Loading
17.9 KB
Loading

0 commit comments

Comments
 (0)