diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/expression-editor.md b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/expression-editor.md new file mode 100644 index 0000000000..65046e251c --- /dev/null +++ b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/expression-editor.md @@ -0,0 +1,23 @@ +--- +title: Expression Editor +author: Alexey Zolotarev +legacyId: 7430 +--- +# Expression Editor +The Expression Editor allows you to edit various Boolean or regular expressions in controls: + +![UI_Expression_Editor](../../images/img11049.png) + +In this editor, you can type an expression manually, or select functions, operators and operands using the editor's controls. + +An expression is a string that, when parsed and processed, evaluates some value. Expressions consist of column/field names, constants, operators and functions. Column/field names must be wrapped with brackets. The following are examples of regular expressions: + +_"[Quantity] * [UnitPrice] * (1 - [BonusAmount])"_ + +Boolean expressions: + +_"[Country] == 'USA'"_ + +For more information about syntax you can use in expressions, see [Expression Operators, Functions and Constants](expression-editor/expression-operators-functions-and-constants.md) + +The Expression Editor supports numerous standard functions, allowing you to easily perform different string, date-time, logical and math operations over data. You can access the available functions by selecting the **Functions** category. \ No newline at end of file diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/expression-editor/expression-operators-functions-and-constants.md b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/expression-editor/expression-operators-functions-and-constants.md new file mode 100644 index 0000000000..b3010f45ed --- /dev/null +++ b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/expression-editor/expression-operators-functions-and-constants.md @@ -0,0 +1,322 @@ +--- +title: Expression Operators, Functions and Constants +author: Alexey Zolotarev +legacyId: 8406 +--- +# Expression Operators, Functions and Constants +This topic lists operators and functions supported by the [Expression Editor](../expression-editor.md). It also provides information on how constants can be specified in expressions. + +The following DevExpress products extend and/or override this syntax. The table below lists the articles that explain how to use expressions in these products. + +|Product | Article | +|---|---| +|Reporting | [Expression Constants, Operators, and Functions](~/eud-for-devexpress-reports/reporting-for-desktop/report-designer/report-designer-for-winforms/use-expressions/expression-language.md) + +## Operators +| Operator | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions)| +|---|---|---|---| +| + | Adds the value of one numeric expression to another, or concatenates two strings. | [FirstName] + ' ' + [LastName]; [UnitPrice] + 4 | Yes | +| - | Finds the difference between two numbers. | [Price1] - [Price2] | Yes | +| * | Multiplies the value of two expressions. | [Quantity] * [UnitPrice] * (1 - [BonusAmount]) | Yes | +| / | Divides the first operand by the second. | [Quantity] / 2 | Yes | +| % | Returns the remainder (modulus) obtained by dividing one numeric expression into another. | [Quantity] % 3 | Yes | +| \| | Compares each bit of its first operand to the corresponding bit of its second operand. If either bit is 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0. | [Number] \| [Number] | Yes | +| & | Performs a bitwise logical AND operation between two integer values. | [Number] & 10 | Yes | +| ^ | Performs a logical exclusion on two Boolean expressions, or a bitwise exclusion on two numeric expressions. | [Number1] ^ [Number2] | Yes | +| == (as well as =) | Returns true if both operands have the same value; otherwise, it returns false. | [Quantity] == 10 (as well as [ID] = 11) | Yes | +| != | Returns true if the operands do not have the same value; otherwise, it returns false. | [Country] != 'France' | Yes | +| < | Less than operator. Used to compare expressions. | [UnitPrice] < 20 | Yes | +| <= | Less than or equal to operator. Used to compare expressions. | [UnitPrice] <= 20 | Yes | +| >= | Greater than or equal to operator. Used to compare expressions. | [UnitPrice] > 30 | Yes | +| > | Greater than operator. Used to compare expressions. | [UnitPrice] >= 30 | Yes | +| In (,,,) | Tests for the existence of a property in an object. | [Country] In ('USA', 'UK', 'Italy') | Yes | +| Like | Compares a string against a pattern. If the value of the string matches the pattern, result is true. If the string does not match the pattern, result is false. If both string and pattern are empty strings, the result is true. | [Name] Like 'An%' | Yes | +| Between (,) | Specifies a range to test. Returns true if a value is greater than or equal to the first operand and less than or equal to the second operand. | [Quantity] Between (10, 20) | Yes | +| And | Performs a logical conjunction on two expressions. | [InStock] And ([ExtendedPrice]> 100) | Yes | +| Or | Performs a logical disjunction on two Boolean expressions. | [Country]=='USA' Or [Country]=='UK' | Yes | +| Not | Performs logical negation on an expression. | Not [InStock] | Yes | +| + | Returns a numeric expression's value (a unary operator). | +[Value] = 10| Yes | +| - | Returns the negative of a numeric expression's value (a unary operator). | -[Value] = 20| Yes | +| ~ | Performs a bitwise negation on a numeric expression.| ~[Roles] = 251 | - | +| Is null | Returns true if an expression is a null reference, the one that does not refer to any object. | [Region] is null | yes | + +## Functions + +**Aggregate Functions** + +| Function | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions) | +|---|---|---|---| +| Avg(Value) | Evaluates the average of the values in the collection.| [Products].Avg([UnitPrice])| - | +| Count() | Returns the number of objects in a collection. | [Products].Count() | - | +| Exists() | Determines whether the object exists in the collection. | [Categories][[CategoryID] == 7].Exists() | - | +| Max(Value) | Returns the maximum expression value in a collection. | [Products].Max([UnitPrice]) | - | +| Min(Value) | Returns the minimum expression value in a collection. | [Products].Min([UnitPrice]) | - | +| Single() | Returns a single object from a collection that contains no more than one object. If the collection contains more objects, use the Condition property to specify a condition. The collection must contain only one object that satisfies the condition; otherwise, the function's behavior is undefined (the function may return an unexpected value or throw an exception). You can pass an expression as a parameter: _[Collection][Condition].Single(Expression)_. The function returns the Expression value evaluated on an object that meets the specified _Condition (optional)_. | [Accounts].Single() is not null [Collection].Single([Property1]) - returns the found object's property value. | - | +| Sum(Value) | Returns the sum of all the expression values in the collection. | [Products].Sum([UnitsInStock]) | - | +| A custom aggregate function | Returns a custom expression value for a collection, according to a custom aggregate function. You can call the function directly or pass it as a parameter.| Call a Custom Aggregate Function | - | + +**Date-time Functions** + +| Function | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions) | +|---|---|---|---| +| AddDays(DateTime, DaysCount) | Returns a date-time value that is the specified number of days away from the specified DateTime. | AddDays([OrderDate], 30) | Yes | +| AddHours(DateTime, HoursCount) | Returns a date-time value that is the specified number of hours away from the specified DateTime. | AddHours([StartTime], 2) | Yes | +| AddMilliSeconds(DateTime, MilliSecondsCount) | Returns a date-time value that is the specified number of milliseconds away from the specified DateTime. | AddMilliSeconds(([StartTime], 5000)) | - | +| AddMinutes(DateTime, MinutesCount) | Returns a date-time value that is the specified number of minutes away from the specified DateTime. | AddMinutes([StartTime], 30) | Yes | +| AddMonths(DateTime, MonthsCount) | Returns a date-time value that is the specified number of months away from the specified DateTime. | AddMonths([OrderDate], 1) | Yes | +| AddSeconds(DateTime, SecondsCount) | Returns a date-time value that is the specified number of seconds away from the specified DateTime. | AddSeconds([StartTime], 60) | Yes | +| AddTicks(DateTime, TicksCount) | Returns a date-time value that is the specified number of ticks away from the specified DateTime. | AddTicks([StartTime], 5000) | - | +| AddTimeSpan(DateTime, TimeSpan) | Returns a date-time value that is away from the specified DateTime for the given TimeSpan. | AddTimeSpan([StartTime], [Duration]) | - | +| AddYears(DateTime, YearsCount) | Returns a date-time value that is the specified number of years away from the specieid DateTime. | AddYears([EndDate], -1) | Yes | +| DateDiffDay(startDate, endDate) | Returns the number of day boundaries between two non-nullable dates. | DateDiffDay([StartTime], Now()) | Yes | +| DateDiffHour(startDate, endDate) | Returns the number of hour boundaries between two non-nullable dates. | DateDiffHour([StartTime], Now()) | Yes | +| DateDiffMilliSecond(startDate, endDate) | Returns the number of millisecond boundaries between two non-nullable dates. | DateDiffMilliSecond([StartTime], Now()) | - | +| DateDiffMinute(startDate, endDate) | Returns the number of minute boundaries between two non-nullable dates. | DateDiffMinute([StartTime], Now()) | Yes | +| DateDiffMonth(startDate, endDate) | Returns the number of month boundaries between two non-nullable dates. | DateDiffMonth([StartTime], Now()) | Yes | +| DateDiffSecond(startDate, endDate) | Returns the number of second boundaries between two non-nullable dates. | DateDiffSecond([StartTime], Now()) | Yes | +| DateDiffTick(startDate, endDate) | Returns the number of tick boundaries between two non-nullable dates. | DateDiffTick([StartTime], Now()) | - | +| DateDiffYear(startDate, endDate) | Returns the number of year boundaries between two non-nullable dates. | DateDiffYear([StartTime], Now()) | Yes | +| GetDate(DateTime) | Extracts a date from the defined DateTime. | GetDate([OrderDateTime]) | +| GetDay(DateTime) | Extracts a day from the defined DateTime. | GetDay([OrderDate]) | Yes | +| GetDayOfWeek(DateTime) | Extracts a day of the week from the defined DateTime. | GetDayOfWeek([OrderDate]) | Yes | +| GetDayOfYear(DateTime) | Extracts a day of the year from the defined DateTime. | GetDayOfYear([OrderDate]) | Yes | +| GetHour(DateTime) | Extracts an hour from the defined DateTime. | GetHour([StartTime]) | Yes | +| GetMilliSecond(DateTime) | Extracts milliseconds from the defined DateTime. | GetMilliSecond([StartTime]) | - | +| GetMinute(DateTime) | Extracts minutes from the defined DateTime. | GetMinute([StartTime]) | Yes | +| GetMonth(DateTime) | Extracts a month from the defined DateTime. | GetMonth([StartTime]) | Yes | +| GetSecond(DateTime) | Extracts seconds from the defined DateTime. | GetSecond([StartTime]) | Yes | +| GetTimeOfDay(DateTime) | Extracts the time of the day from the defined DateTime, in ticks. | GetTimeOfDay([StartTime]) | - | +| GetYear(DateTime) | Extracts a year from the defined DateTime. | GetYear([StartTime]) | Yes | +| IsApril(DateTime) | Returns True if the specified date falls within April. | IsApril([OrderDate]) | Yes | +| IsAugust(DateTime) | Returns True if the specified date falls within August. | IsAugust([OrderDate]) | Yes | +| IsDecember(DateTime) | Returns True if the specified date falls within December. | IsDecember([OrderDate]) | Yes | +| IsFebruary(DateTime) | Returns True if the specified date falls within February. | IsFebruary([OrderDate]) | Yes | +| IsJanuary(DateTime) | Returns True if the specified date falls within January. | IsJanuary([OrderDate]) | Yes | +| IsJuly(DateTime) | Returns True if the specified date falls within July. | IsJuly([OrderDate]) | Yes | +| IsJune(DateTime) | Returns True if the specified date falls within June. | IsJune([OrderDate]) | Yes | +| IsLastMonth(DateTime) | Returns True if the specified date falls within the previous month. | IsLastMonth([OrderDate]) | Yes | +| IsLastYear(DateTime) | Returns True if the specified date falls within the previous year. | IsLastYear([OrderDate]) | Yes | +| IsMarch(DateTime) | Returns True if the specified date falls within March. | IsMarch([OrderDate]) | Yes | +| IsMay(DateTime) | Returns True if the specified date falls within May. | IsMay([OrderDate]) | Yes | +| IsNextMonth(DateTime) | Returns True if the specified date falls within the next month. | IsNextMonth([OrderDate]) | Yes | +| IsNextYear(DateTime) | Returns True if the specified date falls within the next year. | IsNextYear([OrderDate]) | Yes | +| IsNovember(DateTime) | Returns True if the specified date falls within November. | IsNovember([OrderDate]) | Yes | +| IsOctober(DateTime) | Returns True if the specified date falls within October. | IsOctober([OrderDate]) | Yes | +| IsSameDay(DateTime) | Returns True if the specified date/time values fall within the same day. | IsSameDay([OrderDate]) | Yes | +| IsSeptember(DateTime) | Returns True if the specified date falls within September. | IsSeptember([OrderDate]) | Yes | +| IsThisMonth(DateTime) | Returns True if the specified date falls within the current month. | IsThisMonth([OrderDate]) | Yes | +| IsThisWeek(DateTime) | Returns True if the specified date falls within the current week. | IsThisWeek([OrderDate]) | Yes | +| IsYearToDate(DateTime) | Returns True if the specified date falls within the year-to-date period. This period starts from the first day of the current year and continues to the current date (including the current date).| IsYearToDate([OrderDate]) | Yes | +| IsThisYear(DateTime) | Returns True if the specified date falls within the current year. | IsThisYear([OrderDate]) | Yes | +| LocalDateTimeDayAfterTomorrow() | Returns a date-time value corresponding to the day after Tomorrow. | AddDays(LocalDateTimeDayAfterTomorrow(), 5) | Yes | +| LocalDateTimeLastMonth() | Returns the DateTime value corresponding to the first day of the previous month. | AddMonths(LocalDateTimeLastMonth(), 5) | Yes | +| LocalDateTimeLastWeek() | Returns a date-time value corresponding to the first day of the previous week. | AddDays(LocalDateTimeLastWeek(), 5) | Yes | +| LocalDateTimeLastYear() | Returns the DateTime value corresponding to the first day of the previous year. | AddYears(LocalDateTimeLastYear(), 5) | Yes | +| LocalDateTimeNextMonth() | Returns a date-time value corresponding to the first day of the next month. | AddMonths(LocalDateTimeNextMonth(), 5) | Yes | +| LocalDateTimeNextWeek() | Returns a date-time value corresponding to the first day of the following week. | AddDays(LocalDateTimeNextWeek(), 5) | Yes | +| LocalDateTimeNextYear() | Returns a date-time value corresponding to the first day of the following year. | AddYears(LocalDateTimeNextYear(), 5) | Yes | +| LocalDateTimeNow() | Returns a date-time value corresponding to the current moment in time. | AddDays(LocalDateTimeNow(), 5) | Yes | +| LocalDateTimeThisMonth() | Returns a date-time value corresponding to the first day of the current month. | AddMonths(LocalDateTimeThisMonth(), 5) | Yes | +| LocalDateTimeThisWeek() | Returns a date-time value corresponding to the first day of the current week. | AddDays(LocalDateTimeThisWeek(), 5) | Yes | +| LocalDateTimeThisYear() | Returns a date-time value corresponding to the first day of the current year. | AddYears(LocalDateTimeThisYear(), 5) | Yes | +| LocalDateTimeToday() | Returns a date-time value corresponding to Today. | AddDays(LocalDateTimeToday(), 5) | Yes | +| LocalDateTimeTomorrow() | Returns a date-time value corresponding to Tomorrow. | AddDays(LocalDateTimeTomorrow(), 5) | Yes | +| LocalDateTimeTwoMonthsAway() | Returns the DateTime value corresponding to the first day of the following month. | AddMonths(LocalDateTimeTwoMonthAway(), 5) | Yes | +| LocalDateTimeTwoWeeksAway() | Returns the DateTime value corresponding to the first day of the following week. | AddDays(LocalDateTimeTwoWeeksAway(), 5) | Yes | +| LocalDateTimeTwoYearsAway() | Returns the DateTime value corresponding to the first day of the following year. | AddYears(LocalDateTimeTwoYearsAway(), 5) | Yes | +| LocalDateTimeYearBeforeToday() | Returns the DateTime value corresponding to the day one year ago. | AddYears(LocalDateTimeYearBeforeToday(), 5) | Yes | +| LocalDateTimeYesterday() | Returns a date-time value corresponding to Yesterday. | AddDays(LocalDateTimeYesterday(), 5) | Yes | +| Now() | Returns the current system date and time. | AddDays(Now(), 5) | Yes | +| Today() | Returns the current date. Regardless of the actual time, this function returns midnight of the current date. | AddMonths(Today(), 1) | Yes | +| UtcNow() | Returns the current system date and time, expressed as Coordinated Universal Time (UTC). | AddDays(UtcNow(), 7) | - | + +**Logical Functions** + +| Function | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions) | +|---|---|---|---| +| Iif(Expression1, True_Value1, ..., ExpressionN, True_ValueN, False_Value) | Returns one of several specified values depending upon the values of logical expressions. The function can take 2N+1 arguments (N - the number of specified logical expressions): each odd argument specifies a logical expression; each even argument specifies the value that is returned if the previous expression evaluates to true. | Iif(Name = 'Bob', 1, 0) Iif(Name = 'Bob', 1, Name = 'Dan', 2, Name = 'Sam', 3, 0) | Yes | +| IsNull(Value) | Returns True if the specified Value is NULL. | IsNull([OrderDate]) | Yes | +| IsNull(Value1, Value2) | Returns Value1 if it is not set to NULL; otherwise, Value2 is returned. | IsNull([ShipDate], [RequiredDate]) | - | +| IsNullOrEmpty(String) | Returns True if the specified String object is NULL or an empty string; otherwise, False is returned. | IsNullOrEmpty([ProductName]) | Yes | + +**Math Functions** + +| Function | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions) | +|---|---|---|---| +| Abs(Value) | Returns the absolute, positive value of the given numeric expression. | Abs(1 - [Discount]) | Yes | +| Acos(Value) | Returns the arccosine of a number (the angle, in radians, whose cosine is the given float expression). | Acos([Value]) | Yes | +| Asin(Value) | Returns the arcsine of a number (the angle, in radians, whose sine is the given float expression). | Asin([Value]) | Yes | +| Atn(Value) | Returns the arctangent of a number (the angle, in radians, whose tangent is the given float expression). | Atn([Value]) | Yes | +| Atn2(Value1, Value2) | Returns the angle whose tangent is the quotient of two specified numbers, in radians. | Atn2([Value1], [Value2]) | Yes | +| BigMul(Value1, Value2) | Returns an Int64 containing the full product of two specified 32-bit numbers. | BigMul([Amount], [Quantity]) | - | +| Ceiling(Value) | Returns the smallest integer that is greater than or equal to the given numeric expression. | Ceiling([Value]) | Yes | +| Cos(Value) | Returns the cosine of the angle defined in radians. | Cos([Value]) | Yes | +| Cosh(Value) | Returns the hyperbolic cosine of the angle defined in radians. | Cosh([Value]) | Yes | +| Exp(Value) | Returns the exponential value of the given float expression. | Exp([Value]) | Yes | +| Floor(Value) | Returns the largest integer less than or equal to the given numeric expression. | Floor([Value]) | Yes | +| Log(Value) | Returns the natural logarithm of a specified number. | Log([Value]) | Yes | +| Log(Value, Base) | Returns the logarithm of a specified number in a specified Base. | Log([Value], 2) | Yes | +| Log10(Value) | Returns the base 10 logarithm of a specified number. | Log10([Value]) | Yes | +| Max(Value1, Value2) | Returns the maximum value from the specified values. | Max([Value1], [Value2]) | Yes +| Min(Value1, Value2) | Returns the minimum value from the specified values. | Min([Value1], [Value2]) | Yes +| Power(Value, Power) | Returns a specified number raised to a specified power. | Power([Value], 3) | Yes | +| Rnd() | Returns a random number that is less than 1, but greater than or equal to zero. | Rnd()*100 | Yes | +| Round(Value) | Rounds the given value to the nearest integer. | Round([Value]) | Yes | +| Sign(Value) | Returns the positive (+1), zero (0), or negative (-1) sign of the given expression. | Sign([Value]) | Yes | +| Sin(Value) | Returns the sine of the angle, defined in radians. | Sin([Value]) | Yes | +| Sinh(Value) | Returns the hyperbolic sine of the angle defined in radians. | Sinh([Value]) | Yes | +| Sqr(Value) | Returns the square root of a given number. | Sqr([Value]) | - | +| Tan(Value) | Returns the tangent of the angle defined in radians. | Tan([Value]) | Yes | +| Tanh(Value) | Returns the hyperbolic tangent of the angle defined in radians. | Tanh([Value]) | Yes | +| ToDecimal(Value) | Converts Value to an equivalent decimal number. | ToDecimal([Value]) | - | +| ToDouble(Value) | Converts Value to an equivalent 64-bit double-precision floating-point number. | ToDouble([Value]) | - | +| ToFloat(Value) | Converts Value to an equivalent 32-bit single-precision floating-point number. | ToFloat([Value]) | - | +| ToInt(Value) | Converts Value to an equivalent 32-bit signed integer. | ToInt([Value]) | - | +| ToLong(Value) | Converts Value to an equivalent 64-bit signed integer. | ToLong([Value]) | - | + +**String Functions** + +| Function | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions) | +|---|---|---|---| +| Ascii(String) | Returns the ASCII code value of the leftmost character in a character expression. | Ascii('a') | - | +| Char(Number) | Converts an integerASCIICode to a character. | Char(65) + Char(51) | Yes | +| CharIndex(String1, String2) | Returns the starting position of String1 within String2, beginning from the zero character position to the end of a string. | CharIndex('e', 'devexpress') | - | +| CharIndex(String1, String2, StartLocation) | Returns the starting position of String1 within String2, beginning from the StartLocation character position to the end of a string. | CharIndex('e', 'devexpress', 2) | - | +| Concat(String1, ... , StringN) | Returns the result of concatenating two or more string values. | Concat('A', ')', [ProductName]) | Yes | +|Contains(String1, SubString1) | Returns True if SubString1 occurs within String1; otherwise, False is returned. | Contains([ProductName], 'dairy') | Yes +|EndsWith(String1, SubString1) | Returns True if the end of String1 matches SubString1; otherwise, False is returned. | EndsWith([Description], 'The end.') | Yes +| Insert(String1, StartPosition, String2) | Inserts String2 into String1 at the position specified by StartPositon | Insert([Name], 0, 'ABC-') | - | +| Len(Value) | Returns an integer containing either the number of characters in a string or the nominal number of bytes required to store a variable. | Len([Description]) | Yes | +| Lower(String) | Returns String in lowercase. | Lower([ProductName]) | Yes | +| PadLeft(String, Length) | Left-aligns characters in the defined string, padding its left side with white space characters up to a specified total length. | | - | +| PadLeft(String, Length, Char) | Left-aligns characters in the defined string, padding its left side with the specified Char up to a specified total length. | PadLeft([Name], 30, '<') | - | +| PadRight(String, Length) | Right-aligns characters in the defined string, padding its left side with white space characters up to a specified total length. | PadRight([Name], 30) | - | +| PadRight(String, Length, Char) | Right-aligns characters in the defined string, padding its left side with the specified Char up to a specified total length. | PadRight([Name], 30, '>') | - | +| Remove(String, StartPosition, Length) | Deletes a specified number of characters from this instance, beginning at a specified position. | Remove([Name], 0, 3) | - | +| Replace(String, SubString2, String3) | Returns a copy of String1, in which SubString2 has been replaced with String3. | Replace([Name], 'The ', '') | - | +| Reverse(String) | Reverses the order of elements within String. | Reverse([Name]) | - | +| StartsWith(String1, SubString1) | Returns True if the beginning of String1 matches SubString1; otherwise, False. | StartsWith([Title], 'The best') | Yes +| Substring(String, StartPosition, Length) | Retrieves a substring from String. The substring starts at StartPosition and has the specified Length.. | Substring([Description], 2, 3) | Yes | +| Substring(String, StartPosition) | Retrieves a substring from String. The substring starts at StartPosition. | Substring([Description], 2) | - | +| ToStr(Value) | Returns a string representation of an object. | ToStr([ID]) | - | +| Trim(String) | Removes all leading and trailing SPACE characters from String. | Trim([ProductName]) | Yes | +| Upper(String) | Returns String in uppercase. | Upper([ProductName]) | Yes | + +## Constants + +| Constant | Description | Example | XLS(x) Format Export-Friendly [*See Note](#note---restrictions) | +|---|---|---|---| +| String constants | String constants must be wrapped in apostrophes. | [Country] == 'France' | Yes | +| String constants (with apostrophe) | If a string contains an apostrophe, the apostrophe must be doubled. | [Name] == 'O''Neil' | Yes | +| Date-time constants | Date-time constants must be wrapped in '#'. | [OrderDate] >= #1/1/2009# | Yes | +| True | Represents the Boolean True value. | [InStock] == True | Yes | +| False | Represents the Boolean False value. | [InStock] == False | Yes | +| ? | Represents a null reference that does not refer to any object. We recommend using the IsNull unary operator (for example, "[Region] is null") or the IsNull logical function (for example, "IsNull([Region])") instead. | [Region] != ? | Yes | +| Enumeration | Specify an enumeration value using its underlying integer value. | [Status] == 1 +| Guid| Wrap a Guid constant in curly braces. Use Guid constants in a relational operation with equality or inequality operators only. | [OrderID] == {513724e5-17b7-4ec6-abc4-0eae12c72c1f} | Yes | +| Numeric | Specify different numeric constant types in a string form using suffixes:
* Int32 (int) - _1_
* Int16 (short) - _1s_
* Byte (byte) - _1b_
* Double (double) - _1.0_
* Single (float) - _1.0f_
* Decimal (decimal) - _1.0m_
| [Price] == 25.0m | Yes | + +You can build parameterized criteria using any number of positional parameters. To do this, add parameter placeholders (question mark characters) to a criteria expression to identify parameter positions and provide a list of parameter values. When building criteria, parameter placeholders are substituted with parameter values in values in the order they are listed. + +_CriteriaOperator.Parse("[Name] == ? and [Age] == ?", "John", 33)_ + +The following two examples are identical, but the second one allows you to avoid formatting errors. + +_CriteriaOperator.Parse("[OrderDate] >= #1/1/2009#")_ + +_CriteriaOperator.Parse("[OrderDate] >= ?", new DateTime(2009, 1, 1))_ + +When parameters are not specified, a parameter placeholder is substituted with null. + +_CriteriaOperator.Parse("[Region] != ?")_ + +## Collection Elements Verification + +Use brackets "[]" to check if a collection contains an element that satisfies a condition. The following expression returns true if the Accounts collection contains at least one element that satisfies the _[Amount] == 100_ condition: + +_[Accounts][[Amount] == 100]_ + +The following expression returns false if the Accounts collection is empty: + +_[Accounts][]_ + +## Parent Relating Operator + +Use the parent relating operator ('^' character) to refer to a parent in expressions written in the context of a child. You can apply this operator successively to navigate multiple parent relationships. In the expression below, the "RegistrationDate" field refers to a Customer (Orders' parent) and the "Date" field refers to Orders. This expression returns true if there is at least one Order that is made on the day the parent Customer is registered: + +_"[Orders][[^.RegistrationDate] == Date]"_ + +## Grouping Clauses with Brackets + +It is important to use brackets to ensure that your expression returns the intended results. +For instance, the following expression for objects of the Customer type returns all of the Customers where an Account exists with a Date of 8/25/2006 and where an account exists with an Amount of 100: + +_[Accounts][[Date] == #8/25/2006#] && [Accounts][[Amount] == 100]_ + +Construct the expression as in the following example to search for all Customers that have an Account with both a Date of 8/25/2006 and an Amount of 100: + +_[Accounts][[Date] == #8/25/2006# && [Amount] == 100]_ + +## Operator Precedence + +When an expression contains multiple operators, their precedence controls the order in which expression elements are evaluated. + +* Literal values +* Parameters +* Identifiers +* OR (left-associative) +* AND (left-associative) +* '.' relationship qualifier (left-associative) +* ==, != +* <, >, <=, >= +* -, + (left-associative) +* *, /, % (left-associative) +* NOT +* unary - +* In +* Iif +* Trim(), Len(), Substring(), IsNull() +* '[]' (for set-restriction) +* '()' + +The default precedence can be changed by grouping elements with parentheses. For instance, the operators are performed in a default order in the first of the following two code samples. In the second code sample, the addition operation is performed first, because its associated elements are grouped with parentheses, and the multiplication operation is performed last. + +_Accounts[Amount == 2 + 48 * 2]_ + +_Accounts[Amount == (2 + 48) * 2]_ + +## Case Sensitivity + +Operators are case insensitive. Although field values’ case sensitivity depends on the data source. + +> [!NOTE] +> A data source affects certain operators' behavior. For instance, a data source can be configured as case insensitive. In this case, the following expression always evaluates to true: +> _Lower(Name) == Upper(Name)_ + +## Escaping Keywords +You can mark a keyword-like field name with an escape character (@ sign). In the expression below, the **CriteriaOperator.Parse** method interprets \@Or as the field named "Or", not the logical operator OR. + +_\@Or = 'value'_ + +## Escape Characters +Use a backslash (\) as an escape character for characters in expressions. Examples: + +* \\[ +* \\\ +* \\' + +## Retrieving Reference Properties + +Note that while a criteria expression can return an object reference, this is not supported in all scenarios. Returning an object reference by directly referencing a property, as in the following code snippet, is fully supported. + +_"Iif(Part is null, MyCustOrderLine.Part, Part)"_ + +In this code snippet, the Part object, which the Part or MyCustOrderLine.Part property references, is returned correctly. However, retrieving reference properties from functions is not supported. So, the following expression does not work. + +_"Iif(Part is null, MyCustOrderLine, MyCustOrderLine2).Part"_ + +## Note - Restrictions + +Note the following restriction when exporting DevExpress Data Grid and Tree List controls (WinForms and WPF) to the XLS(X) format in **Data-Aware Export Mode**: + +Only expressions that contain export-friendly functions are exported to XLS(X) format. Refer to the **XLS(x) Format Export-Friendly** column in the tables above to find out if a function can be exported to XLS(x) format. \ No newline at end of file diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor.md b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor.md new file mode 100644 index 0000000000..c62cfa94f5 --- /dev/null +++ b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor.md @@ -0,0 +1,15 @@ +--- +title: Filter Editor +author: Alexey Zolotarev +legacyId: 4842 +--- +# Filter Editor +This section describes the capabilities provided by the Filter Editor, which allows users to visually build filters: + +![EndUser_Win_FilterEditor](../../images/img9054.png) + +  + +Topics in this section: +* [Filter Data via the Filter Editor](filter-editor/filter-data-via-the-filter-editor.md) +* [Examples of Using the Filter Editor](filter-editor/examples-of-using-the-filter-editor.md) \ No newline at end of file diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor/examples-of-using-the-filter-editor.md b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor/examples-of-using-the-filter-editor.md new file mode 100644 index 0000000000..93057d2c88 --- /dev/null +++ b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor/examples-of-using-the-filter-editor.md @@ -0,0 +1,105 @@ +--- +title: Examples of Using the Filter Editor +author: Alexey Zolotarev +legacyId: 4661 +--- +# Examples of Using the Filter Editor +The [Filter Editor](filter-data-via-the-filter-editor.md) allows you to filter data (display those records that meet specific requirements), by visually constructing filter criteria in a straightforward graphical form. + +The following sections demonstrate how to construct filter criteria using the Filter Editor. + +## How to Construct a Simple Filter Condition +Basically, filter conditions specify what data to select from a data source and display in a data-bound control. A typical simple filter condition consists of three parts: the column/field name, operator and a value(s). For instance, '[Discount] >= 0.05' is a simple filter condition, where '[Discount]' is a field name, '>=' is an operator and '0.05' is a value. This condition when applied to a data-aware control will display records that have values in the Discount column greater than or equal to 0.05. Here is how to create this condition via the Filter Editor (it's assumed that the underlying data source contains the Discount column, otherwise, this column will not be accessible in the Filter Editor's column list): +1. **Invoke the Filter Editor.** + + To invoke the Filter Editor in a grid control, right-click any grid column's header and select the Filter Editor option. + + ![FilterEditor_SimpleCondt_Invoke](../../../images/img7312.png) + + To learn how to invoke the Filter Editor for other controls, see corresponding sections in this documentation. + +2. **Select a column**. + + To filter against the Discount column, click the column name field. This will display the list of available columns. Select the Discount column in this list: + + ![FilterEditor_SimpleCondt_NewConditionForProductName](../../../images/img7314.png) +3. **Select a comparison operator**. + + Click the operator field to choose the required operator. + + ![FilterEditor_SimpleCondt_SwitchOperators](../../../images/img7316.png) + + The comparison operator list displays only those operators that are supported by the current column's data type. For instance, the Discount column is of the numeric type, and the operator list doesn't display the 'Begins with' operator and other operators that are related to strings. +4. **Enter a value**. + + Now, click the value box and enter a comparison value ('0.05'): + + ![FilterEditor_SimpleCondt_EnterValue005](../../../images/img7317.png) +5. **Save changes**. + + Click OK or Apply, to filter data using the created filter condition. The grid will show the filter panel displaying the current filter criteria: + + ![FilterEditor_SimpleCondt_Final](../../../images/img7318.png) + + The filter panel will contain the 'Edit Filter' button, which also allows you to invoke the Filter Editor. + +## How to Construct Filter Criteria with Multiple Conditions Joined by One Logical Operator +Filter criteria typically consist of two or more simple filter conditions combined by logical operators (AND, OR, NOT AND, NOT OR). The following example shows how to construct filter criteria in the Filter Editor that consist of multiple conditions combined by one logical operator. The "[ProductName] = 'Tofu' AND [Discount] >= 0.1 AND [Quantity] > 99" filter expression contains three simple filter conditions combined by the AND operator. To construct it, do the following: +1. Invoke the Filter Editor. When the Filter Editor is invoked for a grid control, the Filter Editor may display an unfinished new filter condition: + + ![FilterEditor_3Cond_Invoke](../../../images/img7328.png) +2. Set the condition's operator to Equals and operand value to 'Tofu' (as described in the previous section): + + ![FilterEditor_3Cond_FirstCondt](../../../images/img7329.png) +3. To add one more condition, press the ![FilterEditor_EU_AddButton](../../../images/img7350.png) button next to the group's AND operator. This will create a new condition under the current one: + + ![FilterEditor_3Cond_AddSecondCondt](../../../images/img7330.png) + + + + +4. For the second condition, set the column to 'Unit Price', operator to '>=' and operand value to '100': + + ![FilterEditor_3Cond_SecondCondt](../../../images/img7332.png) +5. To add a third condition to the same group, click the ![FilterEditor_EU_AddButton](../../../images/img7350.png) button again. Set the condition's column to 'Units in Stock', operator to '>' and operand value to '50'. Below is the result: + + ![FilterEditor_3Cond_Final](../../../images/img7327.png) +6. Click OK or Apply, to apply the created filter criteria. + +## How to Construct Filter Criteria Involving Different Logical Operators +Some filter criteria contain multiple logical (Boolean) operators combining simple filter conditions. For instance, you want to see items whose price is under 10, and at the same time, the available quantity is also less than 10. At the same time, you may also want to see those items whose price is over 10, while the available quantity is also greater than 10. + +The resulting condition will look like this: + +``(Price is less than 10 AND Quantity is less than 10) OR (Price is greater than 10 AND Quantity is greater than 10)`` + +This is how you can do this: +1. Invoke the Filter Editor. +2. Clear existing filter conditions (if any) by clicking the ![FilterEditor_EU_DeleteButton](../../../images/img7351.png) button: + + ![FilterEditor_4Cond_Clear](../../../images/img7394.png) +3. Change the root logical operator to OR. To do this, click the current AND operator and select OR: + + ![FilterEditor_4Cond_SelectOR](../../../images/img7396.png) +4. Add a new filter condition group by clicking the OR operator and selecting Add Group. + + ![FilterEditor_4Cond_Add1CondtGroup](../../../images/img7398.png) +5. For the created condition, set the column to 'UnitPrice', operator to '<' and operand value to '10': + + ![FilterEditor_4Cond_1CondtGroup_1Condt](../../../images/img7399.png) +6. Click the ![FilterEditor_EU_AddButton](../../../images/img7350.png) button to add a new condition to the current group: + + ![FilterEditor_4Cond_1CondtGroup_AddNewCondt](../../../images/img7403.png) +7. For the new condition, set the column to 'Quantity', operator to '<' and operand value to '10': + + ![FilterEditor_4Cond_1CondtGroup_2Condt](../../../images/img7405.png) +8. Add a new filter condition group. To do this, click the root OR operator and select Add Group. + + ![FilterEditor_4Cond_Add2CondtGroup](../../../images/img7406.png) +9. For the condition within the created group, set the column to 'UnitPrice', operator to '>' and operand value to '10': + + ![FilterEditor_4Cond_2CondtGroup_1Condt](../../../images/img7407.png) +10. Click the ![FilterEditor_EU_AddButton](../../../images/img7350.png) button to add a new condition to the new group. For the new condition, set the column to 'Quantity', operator to '>' and operand value to '10': + + ![FilterEditor_4Cond_2CondtGroup_2Condt](../../../images/img7410.png) +12. Click OK or Apply, to apply the created filter criteria. \ No newline at end of file diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor/filter-data-via-the-filter-editor.md b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor/filter-data-via-the-filter-editor.md new file mode 100644 index 0000000000..323e1d4714 --- /dev/null +++ b/eud-for-bi-dashboards/dashboard-for-desktop/dashboard-designer/ui-elements/filter-editor/filter-data-via-the-filter-editor.md @@ -0,0 +1,76 @@ +--- +title: Filter Data via the Filter Editor +author: Alexey Zolotarev +legacyId: 4659 +--- +# Filter Data via the Filter Editor +## Filter Editor +The **Filter Editor** is used to edit filter criteria. To create and customize filter criteria, use the ![FilterEditor_EU_AddButton](../../../images/img7350.png) and ![FilterEditor_EU_DeleteButton](../../../images/img7351.png) buttons embedded into the control and context menus supported by the editor's elements: + +![FilterEditor_Illustration](../../../images/img5357.png) + +**Remarks** + +A filter condition **group** is a set of conditions combined by the same logical operator. The following filter expression contains two groups combined by the logical OR operator: "([Product] = 'Chang' And [Quantity] > 20) Or ([Product] In ('Tofu', 'Konbu') And [Quantity] < 100)". In the Filter Editor it's represented as follows: + +![CD_FilterEditor_2Groups](../../../images/img7326.png) + +For step-by-step examples of creating filter criteria, see [Examples of Using the Filter Editor](examples-of-using-the-filter-editor.md). + +## Add Conditions +To add a condition to a logical group, do one of the following: +* Focus any condition within the group or the group's logical operator and then press INSERT or ADD on the keyboard. +* Click the ![FilterEditor_EU_AddButton](../../../images/img7350.png) button for the group. +* Click the group's logical operator and select **Add Condition**. + +To add a condition or a group of conditions that have been copied to the clipboard, press CTRL+V or SHIFT+INSERT. The new condition will be added to the focused group. + +## Delete Conditions +To delete a condition, do one of the following: +* Focus the condition and press DELETE or SUBTRACT. +* Click the ![FilterEditor_EU_DeleteButton](../../../images/img7351.png) button. + +To delete a group of conditions, do one of the following: +* Focus the group's logical operator and press DELETE or SUBTRACT +* Click the group's logical operator and select **Remove Group**. + +To delete all conditions, do one of the following: +* Focus the topmost logical operator and press DELETE or SUBTRACT. +* Click the topmost logical operator and select **Clear All**. + +To cut a condition/group of conditions to the clipboard, focus this condition or the group's logical operator and press CTRL+X or SHIFT+DELETE. + +## Clipboard Operations +To copy a condition or a group of conditions to the clipboard, focus this condition or the group's logical operator and press CTRL+C or CTRL+INSERT. + +To cut a condition or a group of conditions to the clipboard, focus this condition or the group's logical operator and press CTRL+X or SHIFT+DELETE. + +To paste a condition or a group of conditions from the clipboard to the focused group, press CTRL+V or SHIFT+INSERT. + +## Change a Column in a Filter Condition +To change a condition's column, invoke the column list by doing one of the following: +* Click the current column. +* Focus the current column via the keyboard and press SPACE or ALT+DOWN ARROW. + +Then, choose the required column from the list that will be invoked + +## Change an Operator in a Filter Condition +To change a condition's operator, invoke the operator list by doing one of the following: +* Click the condition's current operator. +* Focus the current operator via the keyboard and press SPACE or ALT+DOWN ARROW + +Then, choose the required operator from the list that will be invoked + +## Edit a Condition's Value +To edit a condition's value, click the operand value and type text. + +To activate the operand value's edit box without changing the value, click the value or focus the operand value via the keyboard and press F2, SPACE, ENTER or ALT+DOWN + +To close the active edit box, press ENTER. + +To discard changes to the value and close the active edit box, press ESC. + +## Navigation +To focus a specific filter condition or a group's operator within the Filter Editor, do one of the following: +* Click the target element. +* Use arrow keys to move focus via the keyboard. \ No newline at end of file diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img11049.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img11049.png new file mode 100644 index 0000000000..c556e84ef0 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img11049.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img5357.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img5357.png new file mode 100644 index 0000000000..67745209b6 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img5357.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7312.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7312.png new file mode 100644 index 0000000000..4674adb5f3 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7312.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7314.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7314.png new file mode 100644 index 0000000000..4c2098cde0 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7314.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7316.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7316.png new file mode 100644 index 0000000000..a93d3cb414 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7316.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7317.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7317.png new file mode 100644 index 0000000000..163b49b2b1 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7317.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7318.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7318.png new file mode 100644 index 0000000000..fb2ac9b92b Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7318.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7326.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7326.png new file mode 100644 index 0000000000..f8b9326451 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7326.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7327.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7327.png new file mode 100644 index 0000000000..618a9a89df Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7327.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7328.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7328.png new file mode 100644 index 0000000000..338c7ba43e Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7328.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7329.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7329.png new file mode 100644 index 0000000000..f6c2dd45d8 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7329.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7330.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7330.png new file mode 100644 index 0000000000..c13ce53a9e Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7330.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7332.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7332.png new file mode 100644 index 0000000000..053287927c Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7332.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7350.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7350.png new file mode 100644 index 0000000000..32532e624f Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7350.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7351.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7351.png new file mode 100644 index 0000000000..f0ff21e013 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7351.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7394.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7394.png new file mode 100644 index 0000000000..e52f27b576 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7394.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7396.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7396.png new file mode 100644 index 0000000000..477345f5ff Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7396.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7398.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7398.png new file mode 100644 index 0000000000..012fe7080b Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7398.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7399.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7399.png new file mode 100644 index 0000000000..944440ad31 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7399.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7403.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7403.png new file mode 100644 index 0000000000..aafb161e78 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7403.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7405.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7405.png new file mode 100644 index 0000000000..3500f6a8c2 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7405.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7406.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7406.png new file mode 100644 index 0000000000..6b54a97ba9 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7406.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7407.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7407.png new file mode 100644 index 0000000000..15a4baceba Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7407.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img7410.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7410.png new file mode 100644 index 0000000000..c954f73852 Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img7410.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/images/img9054.png b/eud-for-bi-dashboards/dashboard-for-desktop/images/img9054.png new file mode 100644 index 0000000000..c719f0528c Binary files /dev/null and b/eud-for-bi-dashboards/dashboard-for-desktop/images/img9054.png differ diff --git a/eud-for-bi-dashboards/dashboard-for-desktop/toc.yml b/eud-for-bi-dashboards/dashboard-for-desktop/toc.yml index 4746753d0c..6904987070 100644 --- a/eud-for-bi-dashboards/dashboard-for-desktop/toc.yml +++ b/eud-for-bi-dashboards/dashboard-for-desktop/toc.yml @@ -1,649 +1,661 @@ -items: -- name: Dashboard Designer - href: dashboard-designer.md - items: - - name: Create a Dashboard - href: dashboard-designer/create-a-dashboard.md - - name: Provide Data - href: dashboard-designer/provide-data.md - items: - - name: Supported Data Sources - href: dashboard-designer/provide-data/supported-data-sources.md - - name: Connecting to SQL Databases - href: dashboard-designer/provide-data/connecting-to-sql-databases.md - - name: Connecting to OLAP cubes - href: dashboard-designer/provide-data/connecting-to-olap-cubes.md - - name: Binding to Microsoft Excel Workbooks - href: dashboard-designer/provide-data/binding-to-microsoft-excel-workbooks.md - - name: Binding to CSV Files - href: dashboard-designer/provide-data/binding-to-csv-files.md - - name: Binding to Extract Data Sources - href: dashboard-designer/provide-data/binding-to-extract-data-sources.md - - name: Data Processing Modes - href: dashboard-designer/provide-data/data-processing-modes.md - - name: Connect to EF Data Sources - href: dashboard-designer/provide-data/connect-to-ef-data-sources.md - - name: Binding to Federated Data Source - href: dashboard-designer/provide-data/binding-to-federated-data-source.md - - name: Binding to JSON Data Sources - href: dashboard-designer/provide-data/binding-to-json-data-sources.md - - name: Binding to Object Data Sources - href: dashboard-designer/provide-data/binding-to-object-data-sources.md - - name: Binding to XPO Data Sources - href: dashboard-designer/provide-data/binding-to-XPO-data-sources.md - - name: Binding to MongoDB - href: dashboard-designer/provide-data/binding-to-mongodb.md - - name: Work with Data - href: dashboard-designer/work-with-data.md - items: - - name: Edit Connection Parameters - href: dashboard-designer/work-with-data/edit-connection-parameters.md - - name: Using the Query Builder - href: dashboard-designer/work-with-data/using-the-query-builder.md - - name: Using the Query Editor - href: dashboard-designer/work-with-data/using-the-query-editor.md - - name: Manage SQL Queries - href: dashboard-designer/work-with-data/manage-sql-queries.md - - name: Filter Queries - href: dashboard-designer/work-with-data/filter-queries.md - - name: Pass Query Parameters - href: dashboard-designer/work-with-data/pass-query-parameters.md - - name: Stored Procedures - href: dashboard-designer/work-with-data/stored-procedures.md - - name: Preview Data - href: dashboard-designer/work-with-data/preview-data.md - - name: Creating Calculated Fields - href: dashboard-designer/work-with-data/creating-calculated-fields.md - - name: Data Inspector - href: dashboard-designer/work-with-data/data-inspector.md - - name: Add Dashboard Items - href: dashboard-designer/add-dashboard-items.md - - name: Bind Dashboard Items to Data - href: dashboard-designer/bind-dashboard-items-to-data.md - items: - - name: Bind Dashboard Items to Data - href: dashboard-designer/bind-dashboard-items-to-data/bind-dashboard-items-to-data.md - - name: Hidden Data Items - href: dashboard-designer/bind-dashboard-items-to-data/hidden-data-items.md - - name: Bind Dashboard Items to Data in OLAP mode - href: dashboard-designer/bind-dashboard-items-to-data/bind-dashboard-items-to-data-in-olap-mode.md - - name: Dashboard Item Settings - href: dashboard-designer/dashboard-item-settings.md - items: - - name: Chart - href: dashboard-designer/dashboard-item-settings/chart.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/chart/providing-data.md - - name: Series - href: dashboard-designer/dashboard-item-settings/chart/series.md - items: - - name: Series Overview - href: dashboard-designer/dashboard-item-settings/chart/series/series-overview.md - - name: Bar Series - href: dashboard-designer/dashboard-item-settings/chart/series/bar-series.md - - name: Point and Line Series - href: dashboard-designer/dashboard-item-settings/chart/series/point-and-line-series.md - - name: Area Series - href: dashboard-designer/dashboard-item-settings/chart/series/area-series.md - - name: Range Series - href: dashboard-designer/dashboard-item-settings/chart/series/range-series.md - - name: Weighted Series - href: dashboard-designer/dashboard-item-settings/chart/series/weighted-series.md - - name: Financial Series - href: dashboard-designer/dashboard-item-settings/chart/series/financial-series.md - - name: Panes - href: dashboard-designer/dashboard-item-settings/chart/panes.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/chart/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/chart/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/chart/interactivity/drill-down.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/chart/coloring.md - - name: Legend - href: dashboard-designer/dashboard-item-settings/chart/legend.md - - name: Axes - href: dashboard-designer/dashboard-item-settings/chart/axes.md - items: - - name: X-Axis - href: dashboard-designer/dashboard-item-settings/chart/axes/x-axis.md - - name: Y-Axis - href: dashboard-designer/dashboard-item-settings/chart/axes/y-axis.md - - name: Trend Indicators - href: dashboard-designer/dashboard-item-settings/chart/trend-indicators.md - - name: Orientation - href: dashboard-designer/dashboard-item-settings/chart/orientation.md - - name: Conditional Formatting - href: dashboard-designer/dashboard-item-settings/chart/conditional-formatting.md - - name: Scatter Chart - href: dashboard-designer/dashboard-item-settings/scatter-chart.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/scatter-chart/providing-data.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/scatter-chart/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/scatter-chart/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/scatter-chart/interactivity/drill-down.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/scatter-chart/coloring.md - - name: Legend - href: dashboard-designer/dashboard-item-settings/scatter-chart/legend.md - - name: Axes - href: dashboard-designer/dashboard-item-settings/scatter-chart/axes.md - - name: Orientation - href: dashboard-designer/dashboard-item-settings/scatter-chart/orientation.md - - name: Labels - href: dashboard-designer/dashboard-item-settings/scatter-chart/labels.md - - name: Conditional Formatting - href: dashboard-designer/dashboard-item-settings/scatter-chart/conditional-formatting.md - - name: Grid - href: dashboard-designer/dashboard-item-settings/grid.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/grid/providing-data.md - - name: Columns - href: dashboard-designer/dashboard-item-settings/grid/columns.md - items: - - name: Column Type Overview - href: dashboard-designer/dashboard-item-settings/grid/columns/column-type-overview.md - - name: Dimension Column - href: dashboard-designer/dashboard-item-settings/grid/columns/dimension-column.md - - name: Hyperlink Column - href: dashboard-designer/dashboard-item-settings/grid/columns/hyperlink-column.md - - name: Measure Column - href: dashboard-designer/dashboard-item-settings/grid/columns/measure-column.md - - name: Delta Column - href: dashboard-designer/dashboard-item-settings/grid/columns/delta-column.md - - name: Sparkline Column - href: dashboard-designer/dashboard-item-settings/grid/columns/sparkline-column.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/grid/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/grid/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/grid/interactivity/drill-down.md - - name: Conditional Formatting - href: dashboard-designer/dashboard-item-settings/grid/conditional-formatting.md - - name: Totals - href: dashboard-designer/dashboard-item-settings/grid/totals.md - - name: Column Filter - href: dashboard-designer/dashboard-item-settings/grid/column-filter.md - - name: Layout - href: dashboard-designer/dashboard-item-settings/grid/layout.md - - name: Style - href: dashboard-designer/dashboard-item-settings/grid/style.md - - name: Pies - href: dashboard-designer/dashboard-item-settings/pies.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/pies/providing-data.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/pies/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/pies/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/pies/interactivity/drill-down.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/pies/coloring.md - - name: Layout - href: dashboard-designer/dashboard-item-settings/pies/layout.md - - name: Labels - href: dashboard-designer/dashboard-item-settings/pies/labels.md - - name: Style - href: dashboard-designer/dashboard-item-settings/pies/style.md - - name: Cards - href: dashboard-designer/dashboard-item-settings/cards.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/cards/providing-data.md - - name: Layout - href: dashboard-designer/dashboard-item-settings/cards/layout.md - - name: Delta - href: dashboard-designer/dashboard-item-settings/cards/delta.md - - name: Sparkline - href: dashboard-designer/dashboard-item-settings/cards/sparkline.md - - name: Formatting - href: dashboard-designer/dashboard-item-settings/cards/formatting.md - - name: Conditional Formatting - href: dashboard-designer/dashboard-item-settings/cards/conditional-formatting.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/cards/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/cards/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/cards/interactivity/drill-down.md - - name: Cards Arrangement - href: dashboard-designer/dashboard-item-settings/cards/cards-arrangement.md - - name: Gauges - href: dashboard-designer/dashboard-item-settings/gauges.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/gauges/providing-data.md - - name: Delta - href: dashboard-designer/dashboard-item-settings/gauges/delta.md - - name: Gauge Scale - href: dashboard-designer/dashboard-item-settings/gauges/gauge-scale.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/gauges/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/gauges/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/gauges/interactivity/drill-down.md - - name: Layout - href: dashboard-designer/dashboard-item-settings/gauges/layout.md - - name: Style - href: dashboard-designer/dashboard-item-settings/gauges/style.md - - name: Pivot - href: dashboard-designer/dashboard-item-settings/pivot.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/pivot/providing-data.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/pivot/interactivity.md - - name: Conditional Formatting - href: dashboard-designer/dashboard-item-settings/pivot/conditional-formatting.md - - name: Layout - href: dashboard-designer/dashboard-item-settings/pivot/layout.md - - name: Expanded State - href: dashboard-designer/dashboard-item-settings/pivot/expanded-state.md - - name: Choropleth Map - href: dashboard-designer/dashboard-item-settings/choropleth-map.md - items: - - name: Providing Maps - href: dashboard-designer/dashboard-item-settings/choropleth-map/providing-maps.md - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/choropleth-map/providing-data.md - - name: Map Coloring - href: dashboard-designer/dashboard-item-settings/choropleth-map/map-coloring.md - items: - - name: Delta - href: dashboard-designer/dashboard-item-settings/choropleth-map/map-coloring/delta.md - - name: Map Navigation - href: dashboard-designer/dashboard-item-settings/choropleth-map/map-navigation.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/choropleth-map/interactivity.md - - name: Labels - href: dashboard-designer/dashboard-item-settings/choropleth-map/labels.md - - name: Legend - href: dashboard-designer/dashboard-item-settings/choropleth-map/legend.md - - name: Geo Point Maps - href: dashboard-designer/dashboard-item-settings/geo-point-maps.md - items: - - name: Map Types Overview - href: dashboard-designer/dashboard-item-settings/geo-point-maps/map-types-overview.md - - name: Providing Maps - href: dashboard-designer/dashboard-item-settings/geo-point-maps/providing-maps.md - - name: Geo Point Map - href: dashboard-designer/dashboard-item-settings/geo-point-maps/geo-point-map.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/geo-point-maps/geo-point-map/providing-data.md - - name: Bubble Map - href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map/providing-data.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map/coloring.md - - name: Legends - href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map/legends.md - - name: Pie Map - href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/providing-data.md - - name: Pie Options - href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/pie-options.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/coloring.md - - name: Legends - href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/legends.md - - name: Clustering - href: dashboard-designer/dashboard-item-settings/geo-point-maps/clustering.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/geo-point-maps/interactivity.md - - name: Labels - href: dashboard-designer/dashboard-item-settings/geo-point-maps/labels.md - - name: Map Navigation - href: dashboard-designer/dashboard-item-settings/geo-point-maps/map-navigation.md - - name: Range Filter - href: dashboard-designer/dashboard-item-settings/range-filter.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/range-filter/providing-data.md - - name: Series - href: dashboard-designer/dashboard-item-settings/range-filter/series.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/range-filter/interactivity.md - - name: Predefined Ranges - href: dashboard-designer/dashboard-item-settings/range-filter/predefined-ranges.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/range-filter/coloring.md - - name: Date Filter - href: dashboard-designer/dashboard-item-settings/date-filter.md - - name: Images - href: dashboard-designer/dashboard-item-settings/images.md - items: - - name: Image Types Overview - href: dashboard-designer/dashboard-item-settings/images/image-types-overview.md - - name: Providing Images - href: dashboard-designer/dashboard-item-settings/images/providing-images.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/images/interactivity.md - - name: Image Settings - href: dashboard-designer/dashboard-item-settings/images/image-settings.md - - name: Text Box - href: dashboard-designer/dashboard-item-settings/text-box.md - items: - - name: Editing Text - href: dashboard-designer/dashboard-item-settings/text-box/editing-text.md - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/text-box/providing-data.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/text-box/interactivity.md - - name: Treemap - href: dashboard-designer/dashboard-item-settings/treemap.md - items: - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/treemap/providing-data.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/treemap/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/dashboard-item-settings/treemap/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/dashboard-item-settings/treemap/interactivity/drill-down.md - - name: Layout - href: dashboard-designer/dashboard-item-settings/treemap/layout.md - - name: Grouping - href: dashboard-designer/dashboard-item-settings/treemap/grouping.md - - name: Coloring - href: dashboard-designer/dashboard-item-settings/treemap/coloring.md - - name: Labels - href: dashboard-designer/dashboard-item-settings/treemap/labels.md - - name: Filter Elements - href: dashboard-designer/dashboard-item-settings/filter-elements.md - items: - - name: Filter Elements Overview - href: dashboard-designer/dashboard-item-settings/filter-elements/filter-elements-overview.md - - name: Providing Data - href: dashboard-designer/dashboard-item-settings/filter-elements/providing-data.md - - name: Interactivity - href: dashboard-designer/dashboard-item-settings/filter-elements/interactivity.md - - name: Dashboard Item Group - href: dashboard-designer/dashboard-item-settings/dashboard-item-group.md - - name: Tab Container - href: dashboard-designer/dashboard-item-settings/tab-container.md - - name: Data Shaping - href: dashboard-designer/data-shaping.md - items: - - name: Summarization - href: dashboard-designer/data-shaping/summarization.md - - name: Grouping - href: dashboard-designer/data-shaping/grouping.md - - name: Sorting - href: dashboard-designer/data-shaping/sorting.md - - name: Filtering - href: dashboard-designer/data-shaping/filtering.md - - name: Top N - href: dashboard-designer/data-shaping/top-n.md - - name: Formatting Data - href: dashboard-designer/data-shaping/formatting-data.md - - name: Interactivity - href: dashboard-designer/interactivity.md - items: - - name: Master Filtering - href: dashboard-designer/interactivity/master-filtering.md - - name: Drill-Down - href: dashboard-designer/interactivity/drill-down.md - - name: Neutral Filter Mode - href: dashboard-designer/interactivity/neutral-filter-mode.md - - name: Appearance Customization - href: dashboard-designer/appearance-customization.md - items: - - name: Conditional Formatting - href: dashboard-designer/appearance-customization/conditional-formatting.md - items: - - name: Value - href: dashboard-designer/appearance-customization/conditional-formatting/value.md - - name: Top-Bottom - href: dashboard-designer/appearance-customization/conditional-formatting/top-bottom.md - - name: Average - href: dashboard-designer/appearance-customization/conditional-formatting/average.md - - name: Icon Ranges - href: dashboard-designer/appearance-customization/conditional-formatting/icon-ranges.md - - name: Color Ranges - href: dashboard-designer/appearance-customization/conditional-formatting/color-ranges.md - - name: Gradient Ranges - href: dashboard-designer/appearance-customization/conditional-formatting/gradient-ranges.md - - name: A Date Occurring - href: dashboard-designer/appearance-customization/conditional-formatting/a-date-occurring.md - - name: Expression - href: dashboard-designer/appearance-customization/conditional-formatting/expression.md - - name: Bar - href: dashboard-designer/appearance-customization/conditional-formatting/bar.md - - name: Bar Color Ranges - href: dashboard-designer/appearance-customization/conditional-formatting/bar-color-ranges.md - - name: Bar Gradient Ranges - href: dashboard-designer/appearance-customization/conditional-formatting/bar-gradient-ranges.md - - name: Coloring - href: dashboard-designer/appearance-customization/coloring.md - items: - - name: Coloring Concepts - href: dashboard-designer/appearance-customization/coloring/coloring-concepts.md - - name: Customizing a Color Scheme - href: dashboard-designer/appearance-customization/coloring/customizing-a-color-scheme.md - - name: Data Display Formatting - href: dashboard-designer/appearance-customization/data-display-formatting.md - - name: Data Analysis - href: dashboard-designer/data-analysis.md - items: - - name: Aggregations - href: dashboard-designer/data-analysis/aggregations.md - items: - - name: Summary Level Aggregations - href: dashboard-designer/data-analysis/aggregations/summary-level-aggregations.md - - name: Intermediate Level Aggregations - href: dashboard-designer/data-analysis/aggregations/intermediate-level-aggregations.md - - name: Expression Constants, Operators, and Functions - href: dashboard-designer/data-analysis/expression-constants-operators-and-functions.md - - name: Window Calculations - href: dashboard-designer/data-analysis/window-calculations.md - items: - - name: Window Calculations Overview - href: dashboard-designer/data-analysis/window-calculations/window-calculations-overview.md - - name: Window Definition - href: dashboard-designer/data-analysis/window-calculations/window-definition.md - - name: Creating Window Calculations - href: dashboard-designer/data-analysis/window-calculations/creating-window-calculations.md - - name: Calculation Functions Reference - href: dashboard-designer/data-analysis/window-calculations/calculation-functions-reference.md - - name: Window Calculation Limitations - href: dashboard-designer/data-analysis/window-calculations/window-calculation-limitations.md - - name: Use Dashboard Parameters - href: dashboard-designer/data-analysis/using-dashboard-parameters.md - items: - - name: Create Dashboard Parameters - href: dashboard-designer/data-analysis/using-dashboard-parameters/creating-parameters.md - - name: Create Cascading Parameters - href: dashboard-designer/data-analysis/using-dashboard-parameters/create-cascading-parameters.md - - name: Reference Dashboard Parameters - href: dashboard-designer/data-analysis/using-dashboard-parameters/passing-parameter-values.md - - name: Specify Parameter Values - href: dashboard-designer/data-analysis/using-dashboard-parameters/requesting-parameter-values.md - - name: Convert Dashboard Items - href: dashboard-designer/convert-dashboard-items.md - - name: Dashboard Layout - href: dashboard-designer/dashboard-layout.md - items: - - name: Dashboard Title - href: dashboard-designer/dashboard-layout/dashboard-title.md - - name: Dashboard Item Caption - href: dashboard-designer/dashboard-layout/dashboard-item-caption.md - - name: Dashboard Items Layout - href: dashboard-designer/dashboard-layout/dashboard-items-layout.md - - name: Undo and Redo Operations - href: dashboard-designer/undo-and-redo-operations.md - - name: Automatic and Manual Updates - href: dashboard-designer/automatic-and-manual-updates.md - - name: Save a Dashboard - href: dashboard-designer/save-a-dashboard.md - - name: Printing and Exporting - href: dashboard-designer/printing-and-exporting.md - - name: UI Elements - href: dashboard-designer/ui-elements.md - items: - - name: Data Source Browser - href: dashboard-designer/ui-elements/data-source-browser.md - - name: Data Items Pane - href: dashboard-designer/ui-elements/data-items-pane.md - - name: Print Preview - href: dashboard-designer/ui-elements/print-preview.md - - name: Dashboard Surface - href: dashboard-designer/ui-elements/dashboard-surface.md -- name: Dashboard Viewer - href: dashboard-viewer.md - items: - - name: Data Presentation - items: - - name: 'Data Presentation Basics ' - href: dashboard-viewer/data-presentation/data-presentation-basics.md - - name: Master Filtering - href: dashboard-viewer/data-presentation/master-filtering.md - - name: Drill-Down - href: dashboard-viewer/data-presentation/drill-down.md - - name: Dashboard Layout - href: dashboard-viewer/data-presentation/dashboard-layout.md - - name: Data Inspector - href: dashboard-viewer/data-presentation/data-inspector.md - - name: Dashboard Parameters - items: - - name: Requesting Parameter Values - href: dashboard-viewer/dashboard-parameters/requesting-parameter-values.md - - name: Printing and Exporting - href: dashboard-viewer/printing-and-exporting.md - - name: Dashboard Items - href: dashboard-viewer/dashboard-items.md - items: - - name: Chart - href: dashboard-viewer/dashboard-items/chart.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/chart/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/chart/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/chart/printing-and-exporting.md - - name: Scatter Chart - href: dashboard-viewer/dashboard-items/scatter-chart.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/scatter-chart/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/scatter-chart/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/scatter-chart/printing-and-exporting.md - - name: Grid - href: dashboard-viewer/dashboard-items/grid.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/grid/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/grid/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/grid/printing-and-exporting.md - - name: Pies - href: dashboard-viewer/dashboard-items/pies.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/pies/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/pies/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/pies/printing-and-exporting.md - - name: Cards - href: dashboard-viewer/dashboard-items/cards.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/cards/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/cards/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/cards/printing-and-exporting.md - - name: Gauges - href: dashboard-viewer/dashboard-items/gauges.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/gauges/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/gauges/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/gauges/printing-and-exporting.md - - name: Pivot - href: dashboard-viewer/dashboard-items/pivot.md - items: - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/pivot/printing-and-exporting.md - - name: Choropleth Map - href: dashboard-viewer/dashboard-items/choropleth-map.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/choropleth-map/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/choropleth-map/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/choropleth-map/printing-and-exporting.md - - name: Geo Point Maps - href: dashboard-viewer/dashboard-items/geo-point-maps.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/geo-point-maps/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/geo-point-maps/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/geo-point-maps/printing-and-exporting.md - - name: Range Filter - href: dashboard-viewer/dashboard-items/range-filter.md - items: - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/range-filter/printing-and-exporting.md - - name: Date Filter - href: dashboard-viewer/dashboard-items/date-filter.md - - name: Image - href: dashboard-viewer/dashboard-items/image.md - items: - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/image/printing-and-exporting.md - - name: Text Box - href: dashboard-viewer/dashboard-items/text-box.md - items: - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/text-box/printing-and-exporting.md - - name: Treemap - href: dashboard-viewer/dashboard-items/treemap.md - items: - - name: Data Presentation Basics - href: dashboard-viewer/dashboard-items/treemap/data-presentation-basics.md - - name: Interactivity - href: dashboard-viewer/dashboard-items/treemap/interactivity.md - - name: Printing and Exporting - href: dashboard-viewer/dashboard-items/treemap/printing-and-exporting.md - - name: Filter Elements - href: dashboard-viewer/dashboard-items/filter-elements.md - items: - - name: Filter Elements Overview - href: dashboard-viewer/dashboard-items/filter-elements/filter-elements-overview.md - - name: Neutral Filter Mode - href: dashboard-viewer/dashboard-items/filter-elements/neutral-filter-mode.md - - name: Tab Container +items: +- name: Dashboard Designer + href: dashboard-designer.md + items: + - name: Create a Dashboard + href: dashboard-designer/create-a-dashboard.md + - name: Provide Data + href: dashboard-designer/provide-data.md + items: + - name: Supported Data Sources + href: dashboard-designer/provide-data/supported-data-sources.md + - name: Connecting to SQL Databases + href: dashboard-designer/provide-data/connecting-to-sql-databases.md + - name: Connecting to OLAP cubes + href: dashboard-designer/provide-data/connecting-to-olap-cubes.md + - name: Binding to Microsoft Excel Workbooks + href: dashboard-designer/provide-data/binding-to-microsoft-excel-workbooks.md + - name: Binding to CSV Files + href: dashboard-designer/provide-data/binding-to-csv-files.md + - name: Binding to Extract Data Sources + href: dashboard-designer/provide-data/binding-to-extract-data-sources.md + - name: Data Processing Modes + href: dashboard-designer/provide-data/data-processing-modes.md + - name: Connect to EF Data Sources + href: dashboard-designer/provide-data/connect-to-ef-data-sources.md + - name: Binding to Federated Data Source + href: dashboard-designer/provide-data/binding-to-federated-data-source.md + - name: Binding to JSON Data Sources + href: dashboard-designer/provide-data/binding-to-json-data-sources.md + - name: Binding to Object Data Sources + href: dashboard-designer/provide-data/binding-to-object-data-sources.md + - name: Binding to XPO Data Sources + href: dashboard-designer/provide-data/binding-to-XPO-data-sources.md + - name: Binding to MongoDB + href: dashboard-designer/provide-data/binding-to-mongodb.md + - name: Work with Data + href: dashboard-designer/work-with-data.md + items: + - name: Edit Connection Parameters + href: dashboard-designer/work-with-data/edit-connection-parameters.md + - name: Using the Query Builder + href: dashboard-designer/work-with-data/using-the-query-builder.md + - name: Using the Query Editor + href: dashboard-designer/work-with-data/using-the-query-editor.md + - name: Manage SQL Queries + href: dashboard-designer/work-with-data/manage-sql-queries.md + - name: Filter Queries + href: dashboard-designer/work-with-data/filter-queries.md + - name: Pass Query Parameters + href: dashboard-designer/work-with-data/pass-query-parameters.md + - name: Stored Procedures + href: dashboard-designer/work-with-data/stored-procedures.md + - name: Preview Data + href: dashboard-designer/work-with-data/preview-data.md + - name: Creating Calculated Fields + href: dashboard-designer/work-with-data/creating-calculated-fields.md + - name: Data Inspector + href: dashboard-designer/work-with-data/data-inspector.md + - name: Add Dashboard Items + href: dashboard-designer/add-dashboard-items.md + - name: Bind Dashboard Items to Data + href: dashboard-designer/bind-dashboard-items-to-data.md + items: + - name: Bind Dashboard Items to Data + href: dashboard-designer/bind-dashboard-items-to-data/bind-dashboard-items-to-data.md + - name: Hidden Data Items + href: dashboard-designer/bind-dashboard-items-to-data/hidden-data-items.md + - name: Bind Dashboard Items to Data in OLAP mode + href: dashboard-designer/bind-dashboard-items-to-data/bind-dashboard-items-to-data-in-olap-mode.md + - name: Dashboard Item Settings + href: dashboard-designer/dashboard-item-settings.md + items: + - name: Chart + href: dashboard-designer/dashboard-item-settings/chart.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/chart/providing-data.md + - name: Series + href: dashboard-designer/dashboard-item-settings/chart/series.md + items: + - name: Series Overview + href: dashboard-designer/dashboard-item-settings/chart/series/series-overview.md + - name: Bar Series + href: dashboard-designer/dashboard-item-settings/chart/series/bar-series.md + - name: Point and Line Series + href: dashboard-designer/dashboard-item-settings/chart/series/point-and-line-series.md + - name: Area Series + href: dashboard-designer/dashboard-item-settings/chart/series/area-series.md + - name: Range Series + href: dashboard-designer/dashboard-item-settings/chart/series/range-series.md + - name: Weighted Series + href: dashboard-designer/dashboard-item-settings/chart/series/weighted-series.md + - name: Financial Series + href: dashboard-designer/dashboard-item-settings/chart/series/financial-series.md + - name: Panes + href: dashboard-designer/dashboard-item-settings/chart/panes.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/chart/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/chart/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/chart/interactivity/drill-down.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/chart/coloring.md + - name: Legend + href: dashboard-designer/dashboard-item-settings/chart/legend.md + - name: Axes + href: dashboard-designer/dashboard-item-settings/chart/axes.md + items: + - name: X-Axis + href: dashboard-designer/dashboard-item-settings/chart/axes/x-axis.md + - name: Y-Axis + href: dashboard-designer/dashboard-item-settings/chart/axes/y-axis.md + - name: Trend Indicators + href: dashboard-designer/dashboard-item-settings/chart/trend-indicators.md + - name: Orientation + href: dashboard-designer/dashboard-item-settings/chart/orientation.md + - name: Conditional Formatting + href: dashboard-designer/dashboard-item-settings/chart/conditional-formatting.md + - name: Scatter Chart + href: dashboard-designer/dashboard-item-settings/scatter-chart.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/scatter-chart/providing-data.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/scatter-chart/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/scatter-chart/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/scatter-chart/interactivity/drill-down.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/scatter-chart/coloring.md + - name: Legend + href: dashboard-designer/dashboard-item-settings/scatter-chart/legend.md + - name: Axes + href: dashboard-designer/dashboard-item-settings/scatter-chart/axes.md + - name: Orientation + href: dashboard-designer/dashboard-item-settings/scatter-chart/orientation.md + - name: Labels + href: dashboard-designer/dashboard-item-settings/scatter-chart/labels.md + - name: Conditional Formatting + href: dashboard-designer/dashboard-item-settings/scatter-chart/conditional-formatting.md + - name: Grid + href: dashboard-designer/dashboard-item-settings/grid.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/grid/providing-data.md + - name: Columns + href: dashboard-designer/dashboard-item-settings/grid/columns.md + items: + - name: Column Type Overview + href: dashboard-designer/dashboard-item-settings/grid/columns/column-type-overview.md + - name: Dimension Column + href: dashboard-designer/dashboard-item-settings/grid/columns/dimension-column.md + - name: Hyperlink Column + href: dashboard-designer/dashboard-item-settings/grid/columns/hyperlink-column.md + - name: Measure Column + href: dashboard-designer/dashboard-item-settings/grid/columns/measure-column.md + - name: Delta Column + href: dashboard-designer/dashboard-item-settings/grid/columns/delta-column.md + - name: Sparkline Column + href: dashboard-designer/dashboard-item-settings/grid/columns/sparkline-column.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/grid/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/grid/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/grid/interactivity/drill-down.md + - name: Conditional Formatting + href: dashboard-designer/dashboard-item-settings/grid/conditional-formatting.md + - name: Totals + href: dashboard-designer/dashboard-item-settings/grid/totals.md + - name: Column Filter + href: dashboard-designer/dashboard-item-settings/grid/column-filter.md + - name: Layout + href: dashboard-designer/dashboard-item-settings/grid/layout.md + - name: Style + href: dashboard-designer/dashboard-item-settings/grid/style.md + - name: Pies + href: dashboard-designer/dashboard-item-settings/pies.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/pies/providing-data.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/pies/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/pies/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/pies/interactivity/drill-down.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/pies/coloring.md + - name: Layout + href: dashboard-designer/dashboard-item-settings/pies/layout.md + - name: Labels + href: dashboard-designer/dashboard-item-settings/pies/labels.md + - name: Style + href: dashboard-designer/dashboard-item-settings/pies/style.md + - name: Cards + href: dashboard-designer/dashboard-item-settings/cards.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/cards/providing-data.md + - name: Layout + href: dashboard-designer/dashboard-item-settings/cards/layout.md + - name: Delta + href: dashboard-designer/dashboard-item-settings/cards/delta.md + - name: Sparkline + href: dashboard-designer/dashboard-item-settings/cards/sparkline.md + - name: Formatting + href: dashboard-designer/dashboard-item-settings/cards/formatting.md + - name: Conditional Formatting + href: dashboard-designer/dashboard-item-settings/cards/conditional-formatting.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/cards/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/cards/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/cards/interactivity/drill-down.md + - name: Cards Arrangement + href: dashboard-designer/dashboard-item-settings/cards/cards-arrangement.md + - name: Gauges + href: dashboard-designer/dashboard-item-settings/gauges.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/gauges/providing-data.md + - name: Delta + href: dashboard-designer/dashboard-item-settings/gauges/delta.md + - name: Gauge Scale + href: dashboard-designer/dashboard-item-settings/gauges/gauge-scale.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/gauges/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/gauges/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/gauges/interactivity/drill-down.md + - name: Layout + href: dashboard-designer/dashboard-item-settings/gauges/layout.md + - name: Style + href: dashboard-designer/dashboard-item-settings/gauges/style.md + - name: Pivot + href: dashboard-designer/dashboard-item-settings/pivot.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/pivot/providing-data.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/pivot/interactivity.md + - name: Conditional Formatting + href: dashboard-designer/dashboard-item-settings/pivot/conditional-formatting.md + - name: Layout + href: dashboard-designer/dashboard-item-settings/pivot/layout.md + - name: Expanded State + href: dashboard-designer/dashboard-item-settings/pivot/expanded-state.md + - name: Choropleth Map + href: dashboard-designer/dashboard-item-settings/choropleth-map.md + items: + - name: Providing Maps + href: dashboard-designer/dashboard-item-settings/choropleth-map/providing-maps.md + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/choropleth-map/providing-data.md + - name: Map Coloring + href: dashboard-designer/dashboard-item-settings/choropleth-map/map-coloring.md + items: + - name: Delta + href: dashboard-designer/dashboard-item-settings/choropleth-map/map-coloring/delta.md + - name: Map Navigation + href: dashboard-designer/dashboard-item-settings/choropleth-map/map-navigation.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/choropleth-map/interactivity.md + - name: Labels + href: dashboard-designer/dashboard-item-settings/choropleth-map/labels.md + - name: Legend + href: dashboard-designer/dashboard-item-settings/choropleth-map/legend.md + - name: Geo Point Maps + href: dashboard-designer/dashboard-item-settings/geo-point-maps.md + items: + - name: Map Types Overview + href: dashboard-designer/dashboard-item-settings/geo-point-maps/map-types-overview.md + - name: Providing Maps + href: dashboard-designer/dashboard-item-settings/geo-point-maps/providing-maps.md + - name: Geo Point Map + href: dashboard-designer/dashboard-item-settings/geo-point-maps/geo-point-map.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/geo-point-maps/geo-point-map/providing-data.md + - name: Bubble Map + href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map/providing-data.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map/coloring.md + - name: Legends + href: dashboard-designer/dashboard-item-settings/geo-point-maps/bubble-map/legends.md + - name: Pie Map + href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/providing-data.md + - name: Pie Options + href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/pie-options.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/coloring.md + - name: Legends + href: dashboard-designer/dashboard-item-settings/geo-point-maps/pie-map/legends.md + - name: Clustering + href: dashboard-designer/dashboard-item-settings/geo-point-maps/clustering.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/geo-point-maps/interactivity.md + - name: Labels + href: dashboard-designer/dashboard-item-settings/geo-point-maps/labels.md + - name: Map Navigation + href: dashboard-designer/dashboard-item-settings/geo-point-maps/map-navigation.md + - name: Range Filter + href: dashboard-designer/dashboard-item-settings/range-filter.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/range-filter/providing-data.md + - name: Series + href: dashboard-designer/dashboard-item-settings/range-filter/series.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/range-filter/interactivity.md + - name: Predefined Ranges + href: dashboard-designer/dashboard-item-settings/range-filter/predefined-ranges.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/range-filter/coloring.md + - name: Date Filter + href: dashboard-designer/dashboard-item-settings/date-filter.md + - name: Images + href: dashboard-designer/dashboard-item-settings/images.md + items: + - name: Image Types Overview + href: dashboard-designer/dashboard-item-settings/images/image-types-overview.md + - name: Providing Images + href: dashboard-designer/dashboard-item-settings/images/providing-images.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/images/interactivity.md + - name: Image Settings + href: dashboard-designer/dashboard-item-settings/images/image-settings.md + - name: Text Box + href: dashboard-designer/dashboard-item-settings/text-box.md + items: + - name: Editing Text + href: dashboard-designer/dashboard-item-settings/text-box/editing-text.md + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/text-box/providing-data.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/text-box/interactivity.md + - name: Treemap + href: dashboard-designer/dashboard-item-settings/treemap.md + items: + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/treemap/providing-data.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/treemap/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/dashboard-item-settings/treemap/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/dashboard-item-settings/treemap/interactivity/drill-down.md + - name: Layout + href: dashboard-designer/dashboard-item-settings/treemap/layout.md + - name: Grouping + href: dashboard-designer/dashboard-item-settings/treemap/grouping.md + - name: Coloring + href: dashboard-designer/dashboard-item-settings/treemap/coloring.md + - name: Labels + href: dashboard-designer/dashboard-item-settings/treemap/labels.md + - name: Filter Elements + href: dashboard-designer/dashboard-item-settings/filter-elements.md + items: + - name: Filter Elements Overview + href: dashboard-designer/dashboard-item-settings/filter-elements/filter-elements-overview.md + - name: Providing Data + href: dashboard-designer/dashboard-item-settings/filter-elements/providing-data.md + - name: Interactivity + href: dashboard-designer/dashboard-item-settings/filter-elements/interactivity.md + - name: Dashboard Item Group + href: dashboard-designer/dashboard-item-settings/dashboard-item-group.md + - name: Tab Container + href: dashboard-designer/dashboard-item-settings/tab-container.md + - name: Data Shaping + href: dashboard-designer/data-shaping.md + items: + - name: Summarization + href: dashboard-designer/data-shaping/summarization.md + - name: Grouping + href: dashboard-designer/data-shaping/grouping.md + - name: Sorting + href: dashboard-designer/data-shaping/sorting.md + - name: Filtering + href: dashboard-designer/data-shaping/filtering.md + - name: Top N + href: dashboard-designer/data-shaping/top-n.md + - name: Formatting Data + href: dashboard-designer/data-shaping/formatting-data.md + - name: Interactivity + href: dashboard-designer/interactivity.md + items: + - name: Master Filtering + href: dashboard-designer/interactivity/master-filtering.md + - name: Drill-Down + href: dashboard-designer/interactivity/drill-down.md + - name: Neutral Filter Mode + href: dashboard-designer/interactivity/neutral-filter-mode.md + - name: Appearance Customization + href: dashboard-designer/appearance-customization.md + items: + - name: Conditional Formatting + href: dashboard-designer/appearance-customization/conditional-formatting.md + items: + - name: Value + href: dashboard-designer/appearance-customization/conditional-formatting/value.md + - name: Top-Bottom + href: dashboard-designer/appearance-customization/conditional-formatting/top-bottom.md + - name: Average + href: dashboard-designer/appearance-customization/conditional-formatting/average.md + - name: Icon Ranges + href: dashboard-designer/appearance-customization/conditional-formatting/icon-ranges.md + - name: Color Ranges + href: dashboard-designer/appearance-customization/conditional-formatting/color-ranges.md + - name: Gradient Ranges + href: dashboard-designer/appearance-customization/conditional-formatting/gradient-ranges.md + - name: A Date Occurring + href: dashboard-designer/appearance-customization/conditional-formatting/a-date-occurring.md + - name: Expression + href: dashboard-designer/appearance-customization/conditional-formatting/expression.md + - name: Bar + href: dashboard-designer/appearance-customization/conditional-formatting/bar.md + - name: Bar Color Ranges + href: dashboard-designer/appearance-customization/conditional-formatting/bar-color-ranges.md + - name: Bar Gradient Ranges + href: dashboard-designer/appearance-customization/conditional-formatting/bar-gradient-ranges.md + - name: Coloring + href: dashboard-designer/appearance-customization/coloring.md + items: + - name: Coloring Concepts + href: dashboard-designer/appearance-customization/coloring/coloring-concepts.md + - name: Customizing a Color Scheme + href: dashboard-designer/appearance-customization/coloring/customizing-a-color-scheme.md + - name: Data Display Formatting + href: dashboard-designer/appearance-customization/data-display-formatting.md + - name: Data Analysis + href: dashboard-designer/data-analysis.md + items: + - name: Aggregations + href: dashboard-designer/data-analysis/aggregations.md + items: + - name: Summary Level Aggregations + href: dashboard-designer/data-analysis/aggregations/summary-level-aggregations.md + - name: Intermediate Level Aggregations + href: dashboard-designer/data-analysis/aggregations/intermediate-level-aggregations.md + - name: Expression Constants, Operators, and Functions + href: dashboard-designer/data-analysis/expression-constants-operators-and-functions.md + - name: Window Calculations + href: dashboard-designer/data-analysis/window-calculations.md + items: + - name: Window Calculations Overview + href: dashboard-designer/data-analysis/window-calculations/window-calculations-overview.md + - name: Window Definition + href: dashboard-designer/data-analysis/window-calculations/window-definition.md + - name: Creating Window Calculations + href: dashboard-designer/data-analysis/window-calculations/creating-window-calculations.md + - name: Calculation Functions Reference + href: dashboard-designer/data-analysis/window-calculations/calculation-functions-reference.md + - name: Window Calculation Limitations + href: dashboard-designer/data-analysis/window-calculations/window-calculation-limitations.md + - name: Use Dashboard Parameters + href: dashboard-designer/data-analysis/using-dashboard-parameters.md + items: + - name: Create Dashboard Parameters + href: dashboard-designer/data-analysis/using-dashboard-parameters/creating-parameters.md + - name: Create Cascading Parameters + href: dashboard-designer/data-analysis/using-dashboard-parameters/create-cascading-parameters.md + - name: Reference Dashboard Parameters + href: dashboard-designer/data-analysis/using-dashboard-parameters/passing-parameter-values.md + - name: Specify Parameter Values + href: dashboard-designer/data-analysis/using-dashboard-parameters/requesting-parameter-values.md + - name: Convert Dashboard Items + href: dashboard-designer/convert-dashboard-items.md + - name: Dashboard Layout + href: dashboard-designer/dashboard-layout.md + items: + - name: Dashboard Title + href: dashboard-designer/dashboard-layout/dashboard-title.md + - name: Dashboard Item Caption + href: dashboard-designer/dashboard-layout/dashboard-item-caption.md + - name: Dashboard Items Layout + href: dashboard-designer/dashboard-layout/dashboard-items-layout.md + - name: Undo and Redo Operations + href: dashboard-designer/undo-and-redo-operations.md + - name: Automatic and Manual Updates + href: dashboard-designer/automatic-and-manual-updates.md + - name: Save a Dashboard + href: dashboard-designer/save-a-dashboard.md + - name: Printing and Exporting + href: dashboard-designer/printing-and-exporting.md + - name: UI Elements + href: dashboard-designer/ui-elements.md + items: + - name: Data Source Browser + href: dashboard-designer/ui-elements/data-source-browser.md + - name: Data Items Pane + href: dashboard-designer/ui-elements/data-items-pane.md + - name: Print Preview + href: dashboard-designer/ui-elements/print-preview.md + - name: Dashboard Surface + href: dashboard-designer/ui-elements/dashboard-surface.md + - name: Expression Editor + href: dashboard-designer/ui-elements/expression-editor.md + items: + - name: Expression Operators, Functions and Constants + href: dashboard-designer/ui-elements/expression-editor/expression-operators-functions-and-constants.md + - name: Filter Editor + href: dashboard-designer/ui-elements/filter-editor.md + items: + - name: Filter Data via the Filter Editor + href: dashboard-designer/ui-elements/filter-editor/filter-data-via-the-filter-editor.md + - name: Examples of Using the Filter Editor + href: dashboard-designer/ui-elements/filter-editor/examples-of-using-the-filter-editor.md +- name: Dashboard Viewer + href: dashboard-viewer.md + items: + - name: Data Presentation + items: + - name: 'Data Presentation Basics ' + href: dashboard-viewer/data-presentation/data-presentation-basics.md + - name: Master Filtering + href: dashboard-viewer/data-presentation/master-filtering.md + - name: Drill-Down + href: dashboard-viewer/data-presentation/drill-down.md + - name: Dashboard Layout + href: dashboard-viewer/data-presentation/dashboard-layout.md + - name: Data Inspector + href: dashboard-viewer/data-presentation/data-inspector.md + - name: Dashboard Parameters + items: + - name: Requesting Parameter Values + href: dashboard-viewer/dashboard-parameters/requesting-parameter-values.md + - name: Printing and Exporting + href: dashboard-viewer/printing-and-exporting.md + - name: Dashboard Items + href: dashboard-viewer/dashboard-items.md + items: + - name: Chart + href: dashboard-viewer/dashboard-items/chart.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/chart/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/chart/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/chart/printing-and-exporting.md + - name: Scatter Chart + href: dashboard-viewer/dashboard-items/scatter-chart.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/scatter-chart/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/scatter-chart/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/scatter-chart/printing-and-exporting.md + - name: Grid + href: dashboard-viewer/dashboard-items/grid.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/grid/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/grid/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/grid/printing-and-exporting.md + - name: Pies + href: dashboard-viewer/dashboard-items/pies.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/pies/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/pies/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/pies/printing-and-exporting.md + - name: Cards + href: dashboard-viewer/dashboard-items/cards.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/cards/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/cards/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/cards/printing-and-exporting.md + - name: Gauges + href: dashboard-viewer/dashboard-items/gauges.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/gauges/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/gauges/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/gauges/printing-and-exporting.md + - name: Pivot + href: dashboard-viewer/dashboard-items/pivot.md + items: + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/pivot/printing-and-exporting.md + - name: Choropleth Map + href: dashboard-viewer/dashboard-items/choropleth-map.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/choropleth-map/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/choropleth-map/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/choropleth-map/printing-and-exporting.md + - name: Geo Point Maps + href: dashboard-viewer/dashboard-items/geo-point-maps.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/geo-point-maps/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/geo-point-maps/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/geo-point-maps/printing-and-exporting.md + - name: Range Filter + href: dashboard-viewer/dashboard-items/range-filter.md + items: + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/range-filter/printing-and-exporting.md + - name: Date Filter + href: dashboard-viewer/dashboard-items/date-filter.md + - name: Image + href: dashboard-viewer/dashboard-items/image.md + items: + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/image/printing-and-exporting.md + - name: Text Box + href: dashboard-viewer/dashboard-items/text-box.md + items: + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/text-box/printing-and-exporting.md + - name: Treemap + href: dashboard-viewer/dashboard-items/treemap.md + items: + - name: Data Presentation Basics + href: dashboard-viewer/dashboard-items/treemap/data-presentation-basics.md + - name: Interactivity + href: dashboard-viewer/dashboard-items/treemap/interactivity.md + - name: Printing and Exporting + href: dashboard-viewer/dashboard-items/treemap/printing-and-exporting.md + - name: Filter Elements + href: dashboard-viewer/dashboard-items/filter-elements.md + items: + - name: Filter Elements Overview + href: dashboard-viewer/dashboard-items/filter-elements/filter-elements-overview.md + - name: Neutral Filter Mode + href: dashboard-viewer/dashboard-items/filter-elements/neutral-filter-mode.md + - name: Tab Container href: dashboard-viewer/dashboard-items/tab-container.md \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img11024.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img11024.png new file mode 100644 index 0000000000..7b130dce8a Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img11024.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img11049.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img11049.png new file mode 100644 index 0000000000..c556e84ef0 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img11049.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img11165.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img11165.png new file mode 100644 index 0000000000..54f286eba2 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img11165.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img118994.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img118994.png new file mode 100644 index 0000000000..82205ab89d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img118994.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img118995.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img118995.png new file mode 100644 index 0000000000..1a74cbfd9b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img118995.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img122043.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img122043.png new file mode 100644 index 0000000000..4663294313 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img122043.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124017.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124017.png new file mode 100644 index 0000000000..3ee7552ad3 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124017.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124018.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124018.png new file mode 100644 index 0000000000..d98bbca6f5 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124018.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124019.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124019.png new file mode 100644 index 0000000000..8851fdf254 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124019.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124020.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124020.png new file mode 100644 index 0000000000..57e5c6ae37 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124020.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124021.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124021.png new file mode 100644 index 0000000000..b3ed5d665e Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124021.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124034.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124034.png new file mode 100644 index 0000000000..8b52035b8c Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124034.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124035.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124035.png new file mode 100644 index 0000000000..b8c5f0ab39 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124035.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124038.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124038.png new file mode 100644 index 0000000000..54fc58a07f Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124038.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124039.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124039.png new file mode 100644 index 0000000000..35c16e81fa Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124039.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124041.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124041.png new file mode 100644 index 0000000000..fc8cea89bf Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124041.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124042.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124042.png new file mode 100644 index 0000000000..f12870b671 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124042.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124043.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124043.png new file mode 100644 index 0000000000..a147bcc6b8 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124043.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124044.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124044.png new file mode 100644 index 0000000000..2c088b5b23 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124044.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124045.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124045.png new file mode 100644 index 0000000000..3783403b6a Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124045.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124049.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124049.png new file mode 100644 index 0000000000..bf47b2a2f6 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124049.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124050.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124050.png new file mode 100644 index 0000000000..05e9b86317 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124050.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124059.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124059.png new file mode 100644 index 0000000000..7f80ae5edc Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124059.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124060.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124060.png new file mode 100644 index 0000000000..8a30d941f7 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124060.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124092.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124092.png new file mode 100644 index 0000000000..f631d1f3ea Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124092.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124093.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124093.png new file mode 100644 index 0000000000..c30e389a92 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124093.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124135.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124135.png new file mode 100644 index 0000000000..a169bd003e Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124135.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124136.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124136.png new file mode 100644 index 0000000000..0ae3a80963 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124136.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124157.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124157.png new file mode 100644 index 0000000000..90390ab10d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124157.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124158.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124158.png new file mode 100644 index 0000000000..75936d5a41 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124158.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124159.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124159.png new file mode 100644 index 0000000000..00f124b171 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124159.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124160.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124160.png new file mode 100644 index 0000000000..96030f50ff Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124160.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124161.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124161.png new file mode 100644 index 0000000000..3481773240 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124161.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124162.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124162.png new file mode 100644 index 0000000000..19674f2c67 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124162.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124163.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124163.png new file mode 100644 index 0000000000..276e377ba7 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124163.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124164.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124164.png new file mode 100644 index 0000000000..288fedfccc Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124164.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124165.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124165.png new file mode 100644 index 0000000000..9ef1a13a49 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124165.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124166.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124166.png new file mode 100644 index 0000000000..3f00a2dfad Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124166.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img124177.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img124177.png new file mode 100644 index 0000000000..7cb50a3863 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img124177.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img126587.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img126587.png new file mode 100644 index 0000000000..3cfd6ab845 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img126587.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img126929.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img126929.png new file mode 100644 index 0000000000..ba9db855ef Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img126929.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img126951.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img126951.png new file mode 100644 index 0000000000..6ed18e34f7 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img126951.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img126952.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img126952.png new file mode 100644 index 0000000000..3491b514ae Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img126952.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img129098.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img129098.png new file mode 100644 index 0000000000..bae78036ae Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img129098.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img129099.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img129099.png new file mode 100644 index 0000000000..f51bf9771b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img129099.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img21380.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img21380.png new file mode 100644 index 0000000000..7fc1b853a1 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img21380.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img21381.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img21381.png new file mode 100644 index 0000000000..cb6fbb3227 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img21381.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img21382.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img21382.png new file mode 100644 index 0000000000..172ddca929 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img21382.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img21384.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img21384.png new file mode 100644 index 0000000000..a6db392b8d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img21384.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img5357.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img5357.png new file mode 100644 index 0000000000..67745209b6 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img5357.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7227.gif b/eud-for-devexpress-reports/reporting-for-desktop/images/img7227.gif new file mode 100644 index 0000000000..928c7e5e6b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7227.gif differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7228.jpeg b/eud-for-devexpress-reports/reporting-for-desktop/images/img7228.jpeg new file mode 100644 index 0000000000..949b706397 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7228.jpeg differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7259.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7259.png new file mode 100644 index 0000000000..8ecaca10b0 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7259.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7260.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7260.png new file mode 100644 index 0000000000..185a507de1 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7260.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7261.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7261.png new file mode 100644 index 0000000000..94962cc25f Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7261.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7262.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7262.png new file mode 100644 index 0000000000..3e9597db48 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7262.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7263.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7263.png new file mode 100644 index 0000000000..e846e2c41c Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7263.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7264.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7264.png new file mode 100644 index 0000000000..0ce41f6a36 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7264.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7265.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7265.png new file mode 100644 index 0000000000..cdda819014 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7265.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7266.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7266.png new file mode 100644 index 0000000000..3bf29c52dc Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7266.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7267.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7267.png new file mode 100644 index 0000000000..bbe5378c56 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7267.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7268.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7268.png new file mode 100644 index 0000000000..cd452e78f6 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7268.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7269.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7269.png new file mode 100644 index 0000000000..87c096267d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7269.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7270.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7270.png new file mode 100644 index 0000000000..9a6c3197a4 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7270.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7271.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7271.png new file mode 100644 index 0000000000..b4aca922ea Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7271.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7272.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7272.png new file mode 100644 index 0000000000..6ab44ae3d6 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7272.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7273.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7273.png new file mode 100644 index 0000000000..b703262ccc Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7273.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7274.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7274.png new file mode 100644 index 0000000000..072730c877 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7274.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7275.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7275.png new file mode 100644 index 0000000000..edba03b989 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7275.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7276.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7276.png new file mode 100644 index 0000000000..10cfbffb0b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7276.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7277.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7277.png new file mode 100644 index 0000000000..51bfc98cd2 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7277.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7278.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7278.png new file mode 100644 index 0000000000..a22bf158ed Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7278.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7279.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7279.png new file mode 100644 index 0000000000..edd3af15f1 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7279.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7280.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7280.png new file mode 100644 index 0000000000..7a1220a45a Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7280.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7281.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7281.png new file mode 100644 index 0000000000..8eeacc0322 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7281.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7282.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7282.png new file mode 100644 index 0000000000..299aa07360 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7282.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7283.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7283.png new file mode 100644 index 0000000000..ffd345a219 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7283.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7284.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7284.png new file mode 100644 index 0000000000..2cd6775b48 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7284.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7296.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7296.png new file mode 100644 index 0000000000..552f318828 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7296.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7297.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7297.png new file mode 100644 index 0000000000..934224afb0 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7297.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7299.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7299.png new file mode 100644 index 0000000000..3405df3215 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7299.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7300.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7300.png new file mode 100644 index 0000000000..10c5eb1b54 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7300.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7301.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7301.png new file mode 100644 index 0000000000..4b4f2da82f Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7301.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7302.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7302.png new file mode 100644 index 0000000000..440d8c8d6f Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7302.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7303.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7303.png new file mode 100644 index 0000000000..f010c8b302 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7303.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7304.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7304.png new file mode 100644 index 0000000000..16b60edee5 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7304.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7305.gif b/eud-for-devexpress-reports/reporting-for-desktop/images/img7305.gif new file mode 100644 index 0000000000..7cddb138bb Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7305.gif differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7306.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7306.png new file mode 100644 index 0000000000..18a3f99f50 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7306.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7309.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7309.png new file mode 100644 index 0000000000..77638e0da0 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7309.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7310.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7310.png new file mode 100644 index 0000000000..f37bb8ac9e Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7310.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7311.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7311.png new file mode 100644 index 0000000000..31490dc243 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7311.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7312.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7312.png new file mode 100644 index 0000000000..4674adb5f3 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7312.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7314.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7314.png new file mode 100644 index 0000000000..4c2098cde0 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7314.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7316.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7316.png new file mode 100644 index 0000000000..a93d3cb414 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7316.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7317.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7317.png new file mode 100644 index 0000000000..163b49b2b1 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7317.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7318.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7318.png new file mode 100644 index 0000000000..fb2ac9b92b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7318.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7319.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7319.png new file mode 100644 index 0000000000..11932874fa Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7319.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7320.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7320.png new file mode 100644 index 0000000000..42e2933bbf Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7320.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7322.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7322.png new file mode 100644 index 0000000000..143edec35e Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7322.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7323.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7323.png new file mode 100644 index 0000000000..75210198fa Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7323.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7324.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7324.png new file mode 100644 index 0000000000..8c02413425 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7324.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7326.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7326.png new file mode 100644 index 0000000000..f8b9326451 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7326.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7327.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7327.png new file mode 100644 index 0000000000..618a9a89df Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7327.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7328.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7328.png new file mode 100644 index 0000000000..338c7ba43e Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7328.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7329.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7329.png new file mode 100644 index 0000000000..f6c2dd45d8 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7329.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7330.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7330.png new file mode 100644 index 0000000000..c13ce53a9e Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7330.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7332.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7332.png new file mode 100644 index 0000000000..053287927c Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7332.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7333.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7333.png new file mode 100644 index 0000000000..b7d0b432fd Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7333.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7334.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7334.png new file mode 100644 index 0000000000..6853e7438b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7334.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7335.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7335.png new file mode 100644 index 0000000000..42b691ea8d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7335.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7336.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7336.png new file mode 100644 index 0000000000..42ff87dda6 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7336.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7337.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7337.png new file mode 100644 index 0000000000..c81aadd5a6 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7337.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7338.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7338.png new file mode 100644 index 0000000000..e29b90a778 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7338.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7339.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7339.png new file mode 100644 index 0000000000..2a725558d4 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7339.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7350.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7350.png new file mode 100644 index 0000000000..32532e624f Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7350.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7351.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7351.png new file mode 100644 index 0000000000..f0ff21e013 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7351.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7376.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7376.png new file mode 100644 index 0000000000..83f08f1b6a Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7376.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7377.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7377.png new file mode 100644 index 0000000000..642e39ed53 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7377.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7394.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7394.png new file mode 100644 index 0000000000..e52f27b576 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7394.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7396.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7396.png new file mode 100644 index 0000000000..477345f5ff Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7396.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7398.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7398.png new file mode 100644 index 0000000000..012fe7080b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7398.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7399.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7399.png new file mode 100644 index 0000000000..944440ad31 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7399.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7403.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7403.png new file mode 100644 index 0000000000..aafb161e78 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7403.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7405.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7405.png new file mode 100644 index 0000000000..3500f6a8c2 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7405.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7406.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7406.png new file mode 100644 index 0000000000..6b54a97ba9 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7406.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7407.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7407.png new file mode 100644 index 0000000000..15a4baceba Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7407.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7410.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7410.png new file mode 100644 index 0000000000..c954f73852 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7410.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7434.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7434.png new file mode 100644 index 0000000000..b886ed098d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7434.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7437.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7437.png new file mode 100644 index 0000000000..447c5f41ed Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7437.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7442.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7442.png new file mode 100644 index 0000000000..e026c14810 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7442.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7444.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7444.png new file mode 100644 index 0000000000..725cc02798 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7444.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7445.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7445.png new file mode 100644 index 0000000000..f44220436a Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7445.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7446.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7446.png new file mode 100644 index 0000000000..502f352d6d Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7446.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7447.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7447.png new file mode 100644 index 0000000000..76b826a9fb Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7447.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7448.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7448.png new file mode 100644 index 0000000000..6232c76c23 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7448.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img7449.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img7449.png new file mode 100644 index 0000000000..02990c7b03 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img7449.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img8198.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img8198.png new file mode 100644 index 0000000000..187ffbedd7 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img8198.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img8199.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img8199.png new file mode 100644 index 0000000000..20e4f35cf1 Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img8199.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img9054.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img9054.png new file mode 100644 index 0000000000..c719f0528c Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img9054.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/images/img9129.png b/eud-for-devexpress-reports/reporting-for-desktop/images/img9129.png new file mode 100644 index 0000000000..514717cc1b Binary files /dev/null and b/eud-for-devexpress-reports/reporting-for-desktop/images/img9129.png differ diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview.md new file mode 100644 index 0000000000..aaa3b7e551 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview.md @@ -0,0 +1,11 @@ +--- +title: Print Preview +author: Anna Gubareva +legacyId: 116517 +--- +# Print Preview +The Print Preview user interface may vary depending on your application platform. + +The following topics are available in this section. +* [Print Preview for WinForms](print-preview/print-preview-for-winforms.md) +* [Print Preview for WPF](print-preview/print-preview-for-wpf.md) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms.md new file mode 100644 index 0000000000..816c51fd22 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms.md @@ -0,0 +1,100 @@ +--- +title: Print Preview for WinForms +author: Eugeniy Burmistrov +legacyId: 4847 +--- +# Print Preview for WinForms +This section describes the capabilities provided by the Print Preview form. + +![Preview_Main](../images/img9129.png) + +  + +**File Management** +* [Save a Print Preview to a File](print-preview-for-winforms/file-management/save-a-print-preview-to-a-file.md) +* [Load a Print Preview from a File](print-preview-for-winforms/file-management/load-a-print-preview-from-a-file.md) + +  + +**Printing and Page Setup** +* [Print a Document via the Print Dialog](print-preview-for-winforms/printing-and-page-setup/print-a-document-via-the-print-dialog.md) +* [Print a Document Using Default Settings](print-preview-for-winforms/printing-and-page-setup/print-a-document-using-default-settings.md) +* [Change Printing Settings via the Page Setup Dialog](print-preview-for-winforms/printing-and-page-setup/change-printing-settings-via-the-page-setup-dialog.md) +* [Specify Page Margins in Print Preview](print-preview-for-winforms/printing-and-page-setup/specify-page-margins-in-print-preview.md) + +  + +**Headers and Footers** +* [Insert Page Header and Page Footer into Printed Documents](print-preview-for-winforms/headers-and-footers/insert-page-header-and-page-footer-into-printed-documents.md) +* [Insert Page Numbers into Printed Documents](print-preview-for-winforms/headers-and-footers/insert-page-numbers-into-printed-documents.md) +* [Insert Date and Time into Printed Documents](print-preview-for-winforms/headers-and-footers/insert-date-and-time-into-printed-documents.md) +* [Insert the User Name into Printed Documents](print-preview-for-winforms/headers-and-footers/insert-the-user-name-into-printed-documents.md) +* [Insert a Logo into Printed Documents](print-preview-for-winforms/headers-and-footers/insert-a-logo-into-printed-documents.md) + +  + +**Scaling** +* [Scale Print Preview by Entering a Zoom Factor](print-preview-for-winforms/scaling/scale-print-preview-by-entering-a-zoom-factor.md) +* [Scale Print Preview by Specifying Width in Pages](print-preview-for-winforms/scaling/scale-print-preview-by-specifying-width-in-pages.md) + +  + +**Zooming** +* [Zoom Print Preview In or Out](print-preview-for-winforms/zooming/zoom-print-preview-in-or-out.md) +* [Zoom Print Preview by Entering a Zoom Factor](print-preview-for-winforms/zooming/zoom-print-preview-by-entering-a-zoom-factor.md) +* [Zoom Print Preview to Show Whole Pages or Fit Content](print-preview-for-winforms/zooming/zoom-print-preview-to-show-whole-pages-or-fit-content.md) +* [Show Two or More Pages in Print Preview](print-preview-for-winforms/zooming/show-two-or-more-pages-in-print-preview.md) + +  + +**Viewing and Navigating** +* [Navigate Between Pages in Print Preview](print-preview-for-winforms/viewing-and-navigating/navigate-between-pages-in-print-preview.md) +* [Use the Hand Tool in Print Preview](print-preview-for-winforms/viewing-and-navigating/use-the-hand-tool-in-print-preview.md) +* [Navigate in Print Preview Using Bookmarks](print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-bookmarks.md) +* [Navigate in Print Preview Using Thumbnails](print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-thumbnails.md) +* [Search for a Specific Text in Print Preview](print-preview-for-winforms/viewing-and-navigating/search-for-a-specific-text-in-print-preview.md) +* [Switch Print Preview Display Mode](print-preview-for-winforms/viewing-and-navigating/switch-print-preview-display-mode.md) + +  + +**Interactivity** +* [Content Editing in Print Preview](print-preview-for-winforms/interactivity/content-editing-in-print-preview.md) + +  + +**Watermark and Background** +* [Change Watermark and Background Settings in Print Preview](print-preview-for-winforms/watermark-and-background/change-watermark-and-background-settings-in-print-preview.md) +* [Remove a Watermark in Print Preview](print-preview-for-winforms/watermark-and-background/remove-a-watermark-in-print-preview.md) + +  + +**Exporting** +* [Exporting from Print Preview](print-preview-for-winforms/exporting/exporting-from-print-preview.md) +* [PDF-Specific Export Options](print-preview-for-winforms/exporting/pdf-specific-export-options.md) +* [HTML-Specific Export Options](print-preview-for-winforms/exporting/html-specific-export-options.md) +* [MHT-Specific Export Options](print-preview-for-winforms/exporting/mht-specific-export-options.md) +* [RTF-Specific Export Options](print-preview-for-winforms/exporting/rtf-specific-export-options.md) +* [DOCX-Specific Export Options](print-preview-for-winforms/exporting/docx-specific-export-options.md) +* [XLS-Specific Export Options](print-preview-for-winforms/exporting/xls-specific-export-options.md) +* [XLSX-Specific Export Options](print-preview-for-winforms/exporting/xlsx-specific-export-options.md) +* [CSV-Specific Export Options](print-preview-for-winforms/exporting/csv-specific-export-options.md) +* [TXT-Specific Export Options](print-preview-for-winforms/exporting/txt-specific-export-options.md) +* [Image-Specific Export Options](print-preview-for-winforms/exporting/image-specific-export-options.md) + +  + +**Passing Parameters** +* [Passing Parameters in Print Preview](print-preview-for-winforms/passing-parameters-in-print-preview.md) + +  + +**Miscellaneous** +* [Customize Printing Settings of Charts](print-preview-for-winforms/miscellaneous/customize-printing-settings-of-charts.md) +* [Customize Printing Settings of Grids](print-preview-for-winforms/miscellaneous/customize-printing-settings-of-grids.md) +* [Customize Printing Settings of Pivot Tables](print-preview-for-winforms/miscellaneous/customize-printing-settings-of-pivot-tables.md) +* [Customize Printing Settings of Tree Views](print-preview-for-winforms/miscellaneous/customize-printing-settings-of-tree-views.md) + +  + +**Warnings and Error Messages** +* [Warnings and Error Messages in Print Preview](print-preview-for-winforms/warnings-and-error-messages-in-print-preview.md) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/copy-to-the-clipboard.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/copy-to-the-clipboard.md new file mode 100644 index 0000000000..faa983fbe9 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/copy-to-the-clipboard.md @@ -0,0 +1,17 @@ +--- +title: Copy to the Clipboard +author: Eugeniy Burmistrov +legacyId: 16084 +--- +# Copy to the Clipboard +Aside from exporting a document to a third-party formatted file, you can copy a portion of the document content to the clipboard, and paste it into an editor compatible with one of the supported third-party formats. + +To copy document content to the clipboard, do the following. +1. Select the content of the previewed document by holding down the left mouse button and dragging the mouse pointer, to create a selection box. Expand the selection box to fit all of the content you wish to print. The selected document elements are highlighted. + + ![print-preview-selection-box](../../../images/img21380.png) +2. To copy the selected content, press **CTRL + C** or right-click anywhere within the highlighted area of the document, and select **Copy** in the context menu. + + ![print-preview-copy-selection](../../../images/img21381.png) + +When pasted to a third-party editor from the clipboard, the report content will automatically be converted to the target format. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/csv-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/csv-specific-export-options.md new file mode 100644 index 0000000000..a5bac0a00f --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/csv-specific-export-options.md @@ -0,0 +1,21 @@ +--- +title: CSV-Specific Export Options +author: Anna Gubareva +legacyId: 4333 +--- +# CSV-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define CSV-specific exporting options using the following dialog. + +![previewExportOptionsCSV](../../../images/img7333.png) +* **Encoding** + + Specifies the encoding used in the exported document. +* **Text export mode** + + Specifies whether to use the formatting of data fields in the bound data source for cells in the exported document. If this option is set to **Text**, all data fields are exported to the CSV file as strings with the corresponding formatting embedded into those strings. If the option is set to **Value**, all formatting will be lost in the resulting document. +* **Text separator** + + Specifies a symbol used to separate text elements (comma by default). +* **Quote strings with separators** + + Specifies whether strings with separators should be placed in quotation marks in the exported document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/docx-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/docx-specific-export-options.md new file mode 100644 index 0000000000..584cf40fb1 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/docx-specific-export-options.md @@ -0,0 +1,20 @@ +--- +title: DOCX-Specific Export Options +author: Anna Gubareva +legacyId: 118916 +--- +# DOCX-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define DOCX-specific export options using the following dialog: + +![win-docx-export-options-dialog](../../../images/img129098.png) +* **Export mode** + + Specifies how a document is exported to DOCX. The following modes are available. + * The **Single file** mode allows export of a document to a single file without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file divided into pages. In this mode, the **Page range** option is available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. Use commas to separate page numbers. Use hyphens to set page ranges. +* **Export watermarks** + + Specifies whether the exported document should include watermarks (if they exist). \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/exporting-from-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/exporting-from-print-preview.md new file mode 100644 index 0000000000..55519fce46 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/exporting-from-print-preview.md @@ -0,0 +1,41 @@ +--- +title: Exporting from Print Preview +author: Eugeniy Burmistrov +legacyId: 5540 +--- +# Exporting from Print Preview +There are two options available for a document being exported to. +* [Export Document to a File on Disk](#disk) +* [Send Exported File via E-Mail](#mail) + +## Export Document to a File on Disk +To export a document and save the resulting file on your hard drive, do one of the following. +* On the toolbar, click the arrow near the **Export Document...** button ![previewExportArrow](../../../images/img7323.png). +* On the **File** menu, choose the **Export Document...** item. + +Choose the required format from the invoked list. + +![previewExportPDF](../../../images/img7319.png) + +Then, you may be prompted to define format-specific options. See corresponding help topics in this documentation for details, e.g. PDF-Specific Export Options. + +Once you've specified exporting options, the **Save As** dialog appears, allowing you to enter the file name. Then, the following message will be invoked. + +![previewMsgBoxExport](../../../images/img7322.png) + +Click **Yes**, if you want to preview the exported file. + +## Send Exported File via E-Mail +To send the resulting PDF file via e-mail, do one of the following. +* On the toolbar, click the arrow near the **Send via E-Mail...** button ![previewSendViaMailPDF](../../../images/img7324.png). +* On the **File** menu, choose the **Send via E-Mail...** item. + +Choose the required format in the invoked list. + +![previewExportPDF](../../../images/img7319.png) + +Then, you may be prompted to define format-specific options. See corresponding help topics in this documentation for details, e.g. PDF-Specific Export Options. + +Once you've specified exporting options, the **Save As** dialog appears, allowing you to enter the file name. + +Finally, the created document will be attached to a new empty message, created in your default mail program. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/html-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/html-specific-export-options.md new file mode 100644 index 0000000000..eea1df6f9e --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/html-specific-export-options.md @@ -0,0 +1,42 @@ +--- +title: HTML-Specific Export Options +author: Anna Gubareva +legacyId: 4329 +--- +# HTML-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define HTML-specific exporting options using the following dialog. + +![previewExportOptionsHTM](../../../images/img7334.png) +* **Export Mode** + + Specifies how a document is exported to HTML. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without preserving the page-by-page breakdown. + * The **Single file page-by-page** mode allows export of a document to a single file, while preserving page-by-page breakdown. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Page border color** + + Specifies the color of page borders from the available palettes. +* **Page border width** + + Specifies the width (in pixels) of page borders. +* **Title** + + Specifies the title of the created document. +* **Character set** + + Specifies the character set for the HTML document. +* **Remove carriage returns** + + Specifies whether to remove carriage returns. +* **Table layout** + + Specifies whether to use table or non-table layout in the resulting document. +* **Export watermarks** + + Specifies whether to export watermarks to HTML along with the rest of the document content. +* **Embed images in HTML** + + Specifies whether to embed images in HTML content. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/image-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/image-specific-export-options.md new file mode 100644 index 0000000000..a9d63f57e9 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/image-specific-export-options.md @@ -0,0 +1,30 @@ +--- +title: Image-Specific Export Options +author: Anna Gubareva +legacyId: 4335 +--- +# Image-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define image-specific exporting options using the following dialog. + +![previewExportOptionsImg](../../../images/img7335.png) +* **Image format** + + Specifies an image format to export a document. Available formats are BMP, GIF, JPEG, PNG, EMF, WMF and TIFF. +* **Resolution (dpi)** + + Specifies the required image resolution (in dpi). +* **Export mode** + + Specifies how a document is exported to an image. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing the output into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Page border color** + + Specifies the color of page borders. +* **Page border width** + + Specifies the width (in pixels) of page borders. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/mht-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/mht-specific-export-options.md new file mode 100644 index 0000000000..f80bd69d5f --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/mht-specific-export-options.md @@ -0,0 +1,39 @@ +--- +title: MHT-Specific Export Options +author: Anna Gubareva +legacyId: 4330 +--- +# MHT-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define MHT-specific exporting options using the following dialog. + +![previewExportOptionsMHT](../../../images/img7339.png) +* **Export mode** + + Specifies how a document is exported to MHT. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Page border color** + + Specifies the color of page borders from the available palettes. +* **Page border width** + + Specifies the width (in pixels) of page borders. +* **Title** + + Specifies the title of the created document. +* **Character set** + + Specifies the character set for the HTML document. +* **Remove carriage returns** + + Specifies whether to remove carriage returns. +* **Table layout** + + Specifies whether to use table or non-table layout in the resulting document. +* **Export watermarks** + + Specifies whether to export watermarks to HTML along with the rest of the document content. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/pdf-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/pdf-specific-export-options.md new file mode 100644 index 0000000000..6356e56260 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/pdf-specific-export-options.md @@ -0,0 +1,43 @@ +--- +title: PDF-Specific Export Options +author: Anna Gubareva +legacyId: 4328 +--- +# PDF-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define PDF-specific exporting options using the following dialog. + +![previewExportOptionsPDF](../../../images/img7320.png) + +**General Options** +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Don't embed these fonts** + + Specifies font names which should not be embedded into the resulting file to reduce the file size. To separate fonts, use semicolons. +* **Convert Images to Jpeg** + + Specifies whether all bitmaps contained in the document should be converted to JPEG format during export to PDF. +* **Images quality** + + Specifies the document's image quality level. The higher the quality, the bigger the file, and vice versa. +* **Compressed** + + Specifies whether the resulting file should be compressed. +* **PDF/A-2b** + + Specifies whether to enable document compatibility with the **PDF/A-2b** specification. + +**Password Security Options** + +![previewPDFpasswordSecurity](../../../images/img11165.png) + +These options allow you to adjust the security options of the resulting PDF file (e.g. enable open document, editing, printing and copying protection, and specify which changes are allowed). + +**Signature Options** + +If an X.509 certificate is applied to your report, you can maintain its options using the **Signature Options** property of the report **PDF Export Options**. + +**Additional Options** + +You can also fill the **Application**, **Author**, **Keywords**, **Subject**, and **Title** fields. These options specify the **Document Properties** of the created PDF file. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/rtf-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/rtf-specific-export-options.md new file mode 100644 index 0000000000..b3019d6348 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/rtf-specific-export-options.md @@ -0,0 +1,20 @@ +--- +title: RTF-Specific Export Options +author: Anna Gubareva +legacyId: 4331 +--- +# RTF-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define RTF-specific export options using the following dialog. + +![previewExportOptionsRTF](../../../images/img7336.png) +* **Export mode** + + Specifies how a document is exported to RTF. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range** option is available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Export watermarks** + + Specifies whether the exported document should include watermarks (if they exist). \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/txt-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/txt-specific-export-options.md new file mode 100644 index 0000000000..885a7aefc3 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/txt-specific-export-options.md @@ -0,0 +1,21 @@ +--- +title: TXT-Specific Export Options +author: Anna Gubareva +legacyId: 4334 +--- +# TXT-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define TXT-specific exporting options using the following dialog. + +![previewExportOptionsTXT](../../../images/img7337.png) +* **Encoding** + + Specifies the encoding used in the exported document. +* **Text export mode** + + Specifies whether to use the formatting of data fields in the bound data source for cells in the exported document. If this option is set to **Text**, all data fields are exported to the text file as strings with the corresponding formatting embedded into those strings. If the option is set to **Value**, all formatting will be lost in the resulting document. +* **Text separator** + + Specifies a symbol to separate text elements (TAB by default). +* **Quote strings with separators** + + Specifies whether strings with separators should be placed in quotation marks in the exported document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/xls-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/xls-specific-export-options.md new file mode 100644 index 0000000000..08e3cf484d --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/xls-specific-export-options.md @@ -0,0 +1,33 @@ +--- +title: XLS-Specific Export Options +author: Anna Gubareva +legacyId: 4332 +--- +# XLS-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define XLS-specific export options using the following dialog. + +![previewExportOptionsXLS](../../../images/img7338.png) +* **Export mode** + + Specifies how a document is exported to XLS. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. + * The **Different files** mode allows export of a document to multiple files, one for each document page. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Sheet name** + + Specifies the name of the sheet in the created XLS file. +* **Text export mode** + + Specifies whether value formatting should be converted to the native XLS format string (if it is possible), or embedded into cell values as plain text. +* **Show grid lines** + + Specifies whether grid lines should be visible in the resulting XLS file. +* **Export hyperlinks** + + Specifies whether hyperlinks should be exported to the XLS document. +* **Raw data mode** + + Specifies whether to enable the raw data export mode. In this mode, only a document's actual data is exported to XLS, ignoring non-relevant elements, such as images, graphic content, font and appearance settings. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/xlsx-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/xlsx-specific-export-options.md new file mode 100644 index 0000000000..bccd0c7ec6 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/exporting/xlsx-specific-export-options.md @@ -0,0 +1,33 @@ +--- +title: XLSX-Specific Export Options +author: Anna Gubareva +legacyId: 7403 +--- +# XLSX-Specific Export Options +When [exporting a document](exporting-from-print-preview.md), you can define XLSX-specific export options using the following dialog. + +![previewExportOptionsXLSX](../../../images/img11024.png) +* **Export mode** + + Specifies how a document is exported to XLSX. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, with each shown in a separate sheet. + * The **Different files** mode allows export of a document to multiple files, one for each document page. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Sheet name** + + Specifies the name of the sheet in the created XLSX file. +* **Text export mode** + + Specifies whether value formatting should be converted to the native XLSX format string (if it is possible), or embedded into cell values as plain text. +* **Show grid lines** + + Specifies whether grid lines should be visible in the resulting XLSX file. +* **Export hyperlinks** + + Specifies whether to include hyperlinks into the resulting file. +* **Raw data mode** + + Specifies whether to enable the raw data export mode. In this mode, only a document's actual data is exported to XLSX, ignoring non-relevant elements, such as images, graphic content, font and appearance settings. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/file-management/load-a-print-preview-from-a-file.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/file-management/load-a-print-preview-from-a-file.md new file mode 100644 index 0000000000..e5db536711 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/file-management/load-a-print-preview-from-a-file.md @@ -0,0 +1,14 @@ +--- +title: Load a Print Preview from a File +author: Eugeniy Burmistrov +legacyId: 4301 +--- +# Load a Print Preview from a File +To open a previously saved document, click the **Open** ![previewButtonOpen](../../../images/img7260.png) button on the toolbar, or press CTRL+O. + +On the invoked **Open** dialog, define the file and click **Open**. + +![OpenDialog](../../../images/img7377.png) + +> [!NOTE] +> If you open a document previously saved to the hard drive, it is impossible to change its page settings (e.g. page size, orientation, margins, etc.). So, the **Page Setup** and **Scale** buttons will be disabled. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/file-management/save-a-print-preview-to-a-file.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/file-management/save-a-print-preview-to-a-file.md new file mode 100644 index 0000000000..389582be49 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/file-management/save-a-print-preview-to-a-file.md @@ -0,0 +1,18 @@ +--- +title: Save a Print Preview to a File +author: Eugeniy Burmistrov +legacyId: 4300 +--- +# Save a Print Preview to a File +If you've modified your document, and there's a chance you'll need to print out this document version more than once, you can save the document to a file on disk. After that, you can simply load your document and print it out, without having to apply the same changes again. + +To save a document to the file, click the **Save** ![previewButtonSave](../../../images/img7259.png) button on the toolbar, or press CTRL+S. + +On the invoked **Save As** dialog, locate a folder where you want to store your file, enter the document's name and click **Save**. + +![SaveAsDialog](../../../images/img7376.png) + +Your document will be saved with the **.prnx** file extension. Note that this extension will be added to the file name even if you enter another one. + +> [!NOTE] +> If you [open a document](load-a-print-preview-from-a-file.md) which was previously saved to the hard drive, it is impossible to change its page settings (e.g. page size, orientation, margins, etc.). So, the **Page Setup** and the **Scale** buttons will be disabled. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-a-logo-into-printed-documents.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-a-logo-into-printed-documents.md new file mode 100644 index 0000000000..8d4cad1ff6 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-a-logo-into-printed-documents.md @@ -0,0 +1,18 @@ +--- +title: Insert a Logo into Printed Documents +author: Eugeniy Burmistrov +legacyId: 4311 +--- +# Insert a Logo into Printed Documents +To insert a logo into a document's header or footer, first [invoke the Header and Footer dialog](insert-page-header-and-page-footer-into-printed-documents.md). + +Then, focus an appropriate text box, depending on the required alignment, and click the **Image** ![previewButtonImage](../../../images/img7310.png) button. + +Select the image from the dropdown list. + +![previewImageChoose](../../../images/img7311.png) + +Click OK to save changes and close the dialog. + +> [!NOTE] +> If the **Image** button is disabled, then logo insertion is not supported by your software vendor. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-date-and-time-into-printed-documents.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-date-and-time-into-printed-documents.md new file mode 100644 index 0000000000..c11c859b17 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-date-and-time-into-printed-documents.md @@ -0,0 +1,15 @@ +--- +title: Insert Date and Time into Printed Documents +author: Eugeniy Burmistrov +legacyId: 4309 +--- +# Insert Date and Time into Printed Documents +If you need to display the date and time when a document is printed, first [invoke the Header and Footer dialog](insert-page-header-and-page-footer-into-printed-documents.md). + +Then, click on the appropriate text box, depending on the required alignment, and do the following: +* To add a date stamp, click the **Date Printed** ![previewButtonDate](../../../images/img7272.png) button. +* To add a time stamp, click the **Time Printed** ![previewButtonTime](../../../images/img7273.png) button. + +When you click one of these buttons, the dialog adds an alias within square brackets at the current cursor position. You can surround this alias with any text you like. If you no longer need to display date and time in your document, delete this alias. + +Click OK to save changes and close the dialog. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-page-header-and-page-footer-into-printed-documents.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-page-header-and-page-footer-into-printed-documents.md new file mode 100644 index 0000000000..a98d4799fe --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-page-header-and-page-footer-into-printed-documents.md @@ -0,0 +1,15 @@ +--- +title: Insert Page Header and Page Footer into Printed Documents +author: Eugeniy Burmistrov +legacyId: 4307 +--- +# Insert Page Header and Page Footer into Printed Documents +To insert a page header and page footer into a document, click the **Header and Footer** ![previewButtonHeaderFooter](../../../images/img7264.png) button on the toolbar. This will invoke the **Header and Footer** dialog. + +![HeaderAndFooterDialog](../../../images/img7299.png) + +Specify header and footer content using the appropriate text boxes, depending on the required alignment. + +If needed, you can also adjust vertical alignment and font settings. + +Click OK to save changes and close the dialog. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-page-numbers-into-printed-documents.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-page-numbers-into-printed-documents.md new file mode 100644 index 0000000000..23eea9e03b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-page-numbers-into-printed-documents.md @@ -0,0 +1,15 @@ +--- +title: Insert Page Numbers into Printed Documents +author: Eugeniy Burmistrov +legacyId: 4308 +--- +# Insert Page Numbers into Printed Documents +To insert or remove page numbers from a document, first [invoke the Header and Footer dialog](insert-page-header-and-page-footer-into-printed-documents.md). + +Focus a text box, depending on the required alignment, and do one of the following: +* If you need to simply display the current page number, click the **Page Number** ![previewButtonPageNumber](../../../images/img7270.png) button. +* If you need to display the page number out of the total number of pages, click the **Page # of Pages #** ![previewButtonPageOf](../../../images/img7271.png) button. + +When you click one of these buttons, the dialog adds an alias within square brackets at the current cursor position. You can surround this alias with any text you like. If you no longer need page numbers in your document, delete this alias. + +Click OK to save changes and close the dialog. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-the-user-name-into-printed-documents.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-the-user-name-into-printed-documents.md new file mode 100644 index 0000000000..a40a9df978 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/headers-and-footers/insert-the-user-name-into-printed-documents.md @@ -0,0 +1,13 @@ +--- +title: Insert the User Name into Printed Documents +author: Eugeniy Burmistrov +legacyId: 4310 +--- +# Insert the User Name into Printed Documents +To insert user name into a document's header or footer, first [invoke the Header and Footer dialog](insert-page-header-and-page-footer-into-printed-documents.md). + +Then, focus an appropriate text box, depending on the required alignment, and click the **User Name** ![previewButtonUser](../../../images/img7274.png) button. + +When you click this button, the dialog adds an alias within square brackets at the current cursor position. You can surround this alias with any text you like. If you no longer need to display user name in your document, delete this alias. + +Click OK to save changes and close the dialog. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/interactivity/content-editing-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/interactivity/content-editing-in-print-preview.md new file mode 100644 index 0000000000..7b67341c13 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/interactivity/content-editing-in-print-preview.md @@ -0,0 +1,13 @@ +--- +title: Content Editing in Print Preview +author: Anna Gubareva +legacyId: 118013 +--- +# Content Editing in Print Preview +If content editing is enabled for document elements, it is possible to customize the corresponding field values in Print Preview. + +To highlight all editing fields available in the document, click the **Editing Fields** ![eud-win-reports-preview-editing-fields-button](../../../images/img126929.png) button on the toolbar. This button is not available when there are no such fields in the document. + +Clicking a field will invoke an appropriate editor. To apply the entered values and navigate between editing fields, use the TAB and SHIFT+TAB keys. In addition to editing text, you can switch check box states. + +![eud-win-print-preview-content-editing](../../../images/img126951.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-charts.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-charts.md new file mode 100644 index 0000000000..5b7b616bd2 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-charts.md @@ -0,0 +1,20 @@ +--- +title: Customize Printing Settings of Charts +author: Eugeniy Burmistrov +legacyId: 4337 +--- +# Customize Printing Settings of Charts +If allowed by your application vendor, you can customize additional print settings of a document. For example, if you are about to print out a chart, you may be able to customize the chart's printing options. + +To do this, click the **Customize** ![previewButtonCustomize](../../../images/img7442.png) button on the toolbar. The **Print Options** dialog will be invoked. + +![PreviewPrintableEditorChart](../../../images/img7445.png) +* **None** + + A chart is printed in the same size identical to that shown on the form. +* **Stretch** + + A chart is stretched or shrunk to fit the page on which it is printed. +* **Zoom** + + A chart is resized proportionally (without clipping), so that it best fits the page on which it is printed. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-grids.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-grids.md new file mode 100644 index 0000000000..0d929d7fcb --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-grids.md @@ -0,0 +1,17 @@ +--- +title: Customize Printing Settings of Grids +author: Eugeniy Burmistrov +legacyId: 4336 +--- +# Customize Printing Settings of Grids +If allowed by your application vendor, you can customize additional print settings of a document. For example, if you are about to print out a grid, you may be able to customize grid printing options. + +To do this, click the **Customize** ![previewButtonCustomize](../../../images/img7442.png) button on the toolbar. The **Print Options** dialog will be invoked. + +![PreviewPrintableEditorGrid](../../../images/img7444.png) +* **Options tab** + + Allows you to uncheck elements that you don't want to print. +* **Behavior tab** + + Allows you to pre-process a grid before printing it. For instance, you can enable automatic column width calculation, or automatic group row expansion. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-pivot-tables.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-pivot-tables.md new file mode 100644 index 0000000000..78fd191c7c --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-pivot-tables.md @@ -0,0 +1,17 @@ +--- +title: Customize Printing Settings of Pivot Tables +author: Eugeniy Burmistrov +legacyId: 4344 +--- +# Customize Printing Settings of Pivot Tables +If allowed by your application vendor, you can customize additional print settings of a document. For example, if you are about to print out a Pivot Table, you may be able to customize its printing options. + +To do this, click the **Customize** ![previewButtonCustomize](../../../images/img7442.png) button on the toolbar. The **Print Options** dialog will be invoked. + +![PreviewPrintableEditorPivot](../../../images/img7447.png) +* **Options tab** + + Allows you to specify which elements are to be printed. +* **Behavior tab** + + Allows you to pre-process a Pivot Table before printing it. For instance, you can enable field value merging. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-tree-views.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-tree-views.md new file mode 100644 index 0000000000..d847c17cd7 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-tree-views.md @@ -0,0 +1,17 @@ +--- +title: Customize Printing Settings of Tree Views +author: Eugeniy Burmistrov +legacyId: 4346 +--- +# Customize Printing Settings of Tree Views +If allowed by your application vendor, you can customize additional print settings of a document. For example, if you are about to print out a tree view, you may be able to customize its printing options. + +To do this, click the **Customize** ![previewButtonCustomize](../../../images/img7442.png) button on the toolbar. The **Print Options** dialog will be invoked. + +![PreviewPrintableEditorTree](../../../images/img7446.png) +* **Options tab** + + Allows you to specify which elements are to be printed. +* **Behavior tab** + + Allows you to pre-process a tree view before printing it. For instance, you can enable automatic column width or row height calculation. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/passing-parameters-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/passing-parameters-in-print-preview.md new file mode 100644 index 0000000000..b87c7182d8 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/passing-parameters-in-print-preview.md @@ -0,0 +1,13 @@ +--- +title: Passing Parameters in Print Preview +author: Eugeniy Burmistrov +legacyId: 4981 +--- +# Passing Parameters in Print Preview +Some documents or reports allow you to control data display, and what data is to be displayed by specifying parameter values. + +To show the Parameters window, click the **Parameters** ![previewButtonParameters](../../images/img8198.png) button on the main toolbar. A window allowing you to change parameter values will be invoked. + +Enter the required values and click **Submit**. After changing the current values, you can revert back the previously selected values by clicking **Reset**. + +![previewParameters](../../images/img8199.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/change-printing-settings-via-the-page-setup-dialog.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/change-printing-settings-via-the-page-setup-dialog.md new file mode 100644 index 0000000000..174ae8cb96 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/change-printing-settings-via-the-page-setup-dialog.md @@ -0,0 +1,21 @@ +--- +title: Change Printing Settings via the Page Setup Dialog +author: Eugeniy Burmistrov +legacyId: 4304 +--- +# Change Printing Settings via the Page Setup Dialog +To start the page setup dialog box, do one of the following. +* Click the **Page Setup** ![previewButtonPageSetup](../../../images/img7266.png) button on the toolbar. +* On the **File** menu, click **Page Setup...** + +The following dialog will be invoked. + +![PageSetupDialog](../../../images/img7297.png) + +This dialog allows you to do the following: +* Change page orientation (choose Portrait or Landscape). +* Select paper size. +* Change page margins. (This can also be done [in the Print Preview dialog](specify-page-margins-in-print-preview.md)) + +> [!NOTE] +> If you're working with a document that was [loaded from file](../file-management/load-a-print-preview-from-a-file.md), the **Page Setup** commands on the toolbar and main menu will be disabled. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-using-default-settings.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-using-default-settings.md new file mode 100644 index 0000000000..b27fd5523b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-using-default-settings.md @@ -0,0 +1,15 @@ +--- +title: Print a Document Using Default Settings +author: Eugeniy Burmistrov +legacyId: 4303 +--- +# Print a Document Using Default Settings +To send a document directly to the default printer without customizing print settings, do one of the following. +* Click the **Quick Print** ![previewButtonQuickPrint](../../../images/img7262.png) button on the toolbar. +* On the **File** menu, click **Print**. + +To learn how to select a printer, number of copies, and other printing options, refer to the [Print a Document via the Print Dialog](print-a-document-via-the-print-dialog.md) topic. + + +> [!NOTE] +> If you try to print a document whose margins are outside of the printable area, you'll see a [warning message](../warnings-and-error-messages-in-print-preview.md). Click **Yes** to print the document anyway, if you're sure that your printer supports the specified page margins. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-via-the-print-dialog.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-via-the-print-dialog.md new file mode 100644 index 0000000000..e6c26e5c33 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-via-the-print-dialog.md @@ -0,0 +1,21 @@ +--- +title: Print a Document via the Print Dialog +author: Eugeniy Burmistrov +legacyId: 4302 +--- +# Print a Document via the Print Dialog +To print a document, do one of the following. +* Click the **Print** ![previewButtonPrint](../../../images/img7261.png) button on the toolbar, or press CTRL+P. +* On the **File** menu, click **Print...**. + +The **Print** dialog will be invoked. + +![PrintDialog](../../../images/img7296.png) + +Specify the necessary settings and click **Print**. + +To print a document without invoking the **Print** dialog, see the [Print a Document Using Default Settings](print-a-document-using-default-settings.md) topic. + + +> [!NOTE] +> If you try to print a document whose margins are outside of the printable area, you'll see a [warning message](../warnings-and-error-messages-in-print-preview.md). Click **Yes** to print the document anyway, if you are sure that your printer supports the specified page margins. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-selection.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-selection.md new file mode 100644 index 0000000000..438196745e --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/print-selection.md @@ -0,0 +1,16 @@ +--- +title: Print Selection +author: Eugeniy Burmistrov +legacyId: 16082 +--- +# Print Selection +To print only the selected content of the previewed document, do the following. +1. Select the content of the previewed document by holding the left mouse button and dragging the mouse pointer to create a selection box. Expand the selection box to fit all of the content you wish to print. The selected document elements are highlighted. + + ![print-preview-selection-box](../../../images/img21380.png) +2. Right-click anywhere within the highlighted area of the document and select **Print...** in the context menu. + + ![print-preview-print-selection](../../../images/img21382.png) +3. In the invoked **Print** dialog, specify the required settings and click **Print**. + + ![print-preview-print-selection-dialog](../../../images/img21384.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/specify-page-margins-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/specify-page-margins-in-print-preview.md new file mode 100644 index 0000000000..881f5513d1 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/printing-and-page-setup/specify-page-margins-in-print-preview.md @@ -0,0 +1,22 @@ +--- +title: Specify Page Margins in Print Preview +author: Eugeniy Burmistrov +legacyId: 4339 +--- +# Specify Page Margins in Print Preview +To set document page margins, do one of the following. +* **Use the Page Setup dialog** + + In the [Page Setup dialog](change-printing-settings-via-the-page-setup-dialog.md), enter the required top, left, bottom and right page margins' values into the appropriate editors. + + ![previewPageSetupMargins](../../../images/img7309.png) + + Then, click OK to save changes. +* **Use drag-and-drop in the Print Preview window** + + To use this approach, point to the dotted line indicating the margin's border. When the pointer changes to ![cursorMargin](../../../images/img7305.gif), drag the pointer to move the margin. + + ![previewMargins](../../../images/img7304.png) + +> [!NOTE] +> If you're working with a document that was [loaded from file](../file-management/load-a-print-preview-from-a-file.md), it is impossible to change its page settings (e.g. page size, orientation, margins, etc.). \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-entering-a-zoom-factor.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-entering-a-zoom-factor.md new file mode 100644 index 0000000000..66a68a5a01 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-entering-a-zoom-factor.md @@ -0,0 +1,16 @@ +--- +title: Scale Print Preview by Entering a Zoom Factor +author: Eugeniy Burmistrov +legacyId: 4312 +--- +# Scale Print Preview by Entering a Zoom Factor +To scale a document, click the **Scale** ![previewButtonScale](../../../images/img7267.png) button on the toolbar. The **Scaling** dialog will be invoked. + +Set the required percentage value in the editor. + +![previewPercentage](../../../images/img7275.png) + +Click **OK** to save changes and close the dialog. + +> [!NOTE] +> If you're working with a document [loaded from file](../file-management/load-a-print-preview-from-a-file.md), you cannot use scaling. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-specifying-width-in-pages.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-specifying-width-in-pages.md new file mode 100644 index 0000000000..8279c7eb3f --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-specifying-width-in-pages.md @@ -0,0 +1,16 @@ +--- +title: Scale Print Preview by Specifying Width in Pages +author: Eugeniy Burmistrov +legacyId: 4313 +--- +# Scale Print Preview by Specifying Width in Pages +To scale a document to fit into X pages, click the **Scale** ![previewButtonScale](../../../images/img7267.png) button on the toolbar. The **Scaling** dialog will be invoked. + +Set the required number of pages in the editor. + +![previewFit](../../../images/img7276.png) + +Click **OK** to save changes and close the dialog. + +> [!NOTE] +> If you're working with a document [loaded from file](../file-management/load-a-print-preview-from-a-file.md), you cannot use scaling. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-between-pages-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-between-pages-in-print-preview.md new file mode 100644 index 0000000000..7556d61501 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-between-pages-in-print-preview.md @@ -0,0 +1,7 @@ +--- +title: Navigate Between Pages in Print Preview +author: Eugeniy Burmistrov +legacyId: 4319 +--- +# Navigate Between Pages in Print Preview +To navigate between pages, use the scrollbars or navigation buttons  ![previewButtonNavigate](../../../images/img7283.png)  on the toolbar. These buttons allow you to switch to the first, previous, next, or last page of a document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-bookmarks.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-bookmarks.md new file mode 100644 index 0000000000..32edb3c88b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-bookmarks.md @@ -0,0 +1,11 @@ +--- +title: Navigate in Print Preview Using Bookmarks +author: Anna Gubareva +legacyId: 4322 +--- +# Navigate in Print Preview Using Bookmarks +If a document contains bookmarks, you can use the **Document Map** panel for navigation purposes. + +To toggle this panel's visibility, use the **Docuemnt Map** ![previewButtonDocumentMap](../../../images/img7434.png) button on the toolbar. To go to a specific bookmark, click it in the Document Map. As a result, the Print Preview navigates to a document element associated with the bookmark. + +![previewDocumentMap](../../../images/img7437.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-thumbnails.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-thumbnails.md new file mode 100644 index 0000000000..b44157034c --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-thumbnails.md @@ -0,0 +1,15 @@ +--- +title: Navigate in Print Preview Using Thumbnails +author: Eugeniy Burmistrov +legacyId: 114542 +--- +# Navigate in Print Preview Using Thumbnails +You can use thumbnails to quickly navigate between document pages. + +To show report thumbnails, click the **Thumbnails** button on the toolbar. + +![document-viewer-show-thumbnails](../../../images/img118994.png) + +Click a thumbnail to navigate to the corresponding document page. + +![document-viewer-thumbnails-pane](../../../images/img118995.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/search-for-a-specific-text-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/search-for-a-specific-text-in-print-preview.md new file mode 100644 index 0000000000..73c7551142 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/search-for-a-specific-text-in-print-preview.md @@ -0,0 +1,15 @@ +--- +title: Search for a Specific Text in Print Preview +author: Anna Gubareva +legacyId: 4323 +--- +# Search for a Specific Text in Print Preview +To search for a specific text throughout a document, click the **Search** ![previewButtonSearch](../../../images/img7282.png) button on the toolbar, or press CTRL+F. This invokes the Search panel. + +![FindDialog](../../../images/img7300.png) + +To start searching for the terms, click **Next** or press ENTER. To find the next occurrence of the terms, do the same. To find the previous occurrence of the terms, click **Previous**. + +The Search panel also provides the settings button, which invokes the dedicated submenu allowing you to specify whether or not to use a case-sensitive search and whether or not you need to match the whole word during the search. + +![FindPanel_SettingsButton](../../../images/img122043.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/switch-print-preview-display-mode.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/switch-print-preview-display-mode.md new file mode 100644 index 0000000000..265fe5db26 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/switch-print-preview-display-mode.md @@ -0,0 +1,19 @@ +--- +title: Switch Print Preview Display Mode +author: Eugeniy Burmistrov +legacyId: 4560 +--- +# Switch Print Preview Display Mode +## Enable the Facing Layout View +To enable the facing layout view, on the **View** menu, point to **Page Layout**, and then click **Facing**. + +![previewViewFacing](../../../images/img7448.png) + +This allows you to preserve an entire page view, whether you resize the preview window, scroll a document or choose a multiple page view mode. + +## Enable the Continuous Layout View +To enable the continuous layout view, on the **View** menu, point to **Page Layout**, and then click **Continuous**. + +![previewViewContinuous](../../../images/img7449.png) + +This allows you to continuously scroll a page layout view. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/use-the-hand-tool-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/use-the-hand-tool-in-print-preview.md new file mode 100644 index 0000000000..ca3c67f1fc --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/viewing-and-navigating/use-the-hand-tool-in-print-preview.md @@ -0,0 +1,11 @@ +--- +title: Use the Hand Tool in Print Preview +author: Eugeniy Burmistrov +legacyId: 4321 +--- +# Use the Hand Tool in Print Preview +The **Hand Tool** enables you to scroll content by dragging the document instead of using scrollbars. + +To activate the **Hand Tool**, click the **Hand Tool** ![previewButtonHand](../../../images/img7263.png) button on the toolbar. + +Then, after you click a document's page, the mouse pointer is changed from ![ZoomingChart5](../../../images/img7227.gif) to ![ZoomingChart6](../../../images/img7228.jpeg). Drag the mouse pointer to scroll the document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/warnings-and-error-messages-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/warnings-and-error-messages-in-print-preview.md new file mode 100644 index 0000000000..91ce20e637 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/warnings-and-error-messages-in-print-preview.md @@ -0,0 +1,19 @@ +--- +title: Warnings and Error Messages in Print Preview +author: Anna Gubareva +legacyId: 4541 +--- +# Warnings and Error Messages in Print Preview +## Warnings +* **One or more margins are set outside the printable area of the page.** + + This message is invoked when you try to [print a document](printing-and-page-setup/print-a-document-via-the-print-dialog.md) whose margins are outside of the printable area of the page. + + Click **Yes** if you are sure that your printer supports the specified page margins. Otherwise, click **No**. + +## Errors +* **The specified file cannot be loaded, because it either does not contain valid XML data or exceeds the allowed size.** + + This message is invoked if you try to [open a file](file-management/load-a-print-preview-from-a-file.md) with an incompatible markup or a file whose size exceeds the allowed size. + + These files cannot be loaded in the Print Preview. Try to open a file with a compatible markup and/or a smaller size. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/watermark-and-background/change-watermark-and-background-settings-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/watermark-and-background/change-watermark-and-background-settings-in-print-preview.md new file mode 100644 index 0000000000..2eb761c07b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/watermark-and-background/change-watermark-and-background-settings-in-print-preview.md @@ -0,0 +1,36 @@ +--- +title: Change Watermark and Background Settings in Print Preview +author: Eugeniy Burmistrov +legacyId: 4324 +--- +# Change Watermark and Background Settings in Print Preview +## Invoke the Watermark Dialog +To add a watermark to a document, click the **Watermark** ![previewButtonWatermark](../../../images/img7281.png) button on the toolbar, or click **Watermark...** on the **Background** menu. The **Watermark** dialog will be invoked. + +## Add a Text Watermark +To add a text watermark, open the **Text Watermark** tab. + +![previewWatermarkDialogText](../../../images/img7302.png) + +Input the required text, or choose one from the provided options. If required, define other text properties, such as direction, color, font, size, transparency, etc. + +## Add an Image Watermark +To add a picture watermark, open the **Picture Watermark** tab. + +![previewWatermarkDialogImage](../../../images/img7301.png) + +Load the image and customize its properties, such as size mode, horizontal and vertical alignment, tiling, transparency, etc. + +## Specify the Pages Where you will Display Your Watermark +Specify the required pages to apply a watermark in the **Page Range** section of the dialog. + +![previewWatermarkPageRange](../../../images/img7306.png) + +Separate page numbers with commas, or specify page ranges using a dash. + +## Add a Background Color to a Document +To add a background color to a document, click the **Background Color** ![previewButtonBgColor](../../../images/img7280.png) button on the toolbar, or click **Color...** on the **Background** menu. The **Background Color** dialog will be invoked. + +![previewBgColorDialog](../../../images/img7303.png) + +Then, choose a color from the **Custom**, **Web** or **System** palettes. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/watermark-and-background/remove-a-watermark-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/watermark-and-background/remove-a-watermark-in-print-preview.md new file mode 100644 index 0000000000..5d53dac3ce --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/watermark-and-background/remove-a-watermark-in-print-preview.md @@ -0,0 +1,7 @@ +--- +title: Remove a Watermark in Print Preview +author: Eugeniy Burmistrov +legacyId: 4327 +--- +# Remove a Watermark in Print Preview +To remove a watermark from a document, invoke the [Watermark dialog](change-watermark-and-background-settings-in-print-preview.md). Click **Clear All**, then click OK to save changes and close the dialog. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/show-two-or-more-pages-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/show-two-or-more-pages-in-print-preview.md new file mode 100644 index 0000000000..8d203ba08b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/show-two-or-more-pages-in-print-preview.md @@ -0,0 +1,13 @@ +--- +title: Show Two or More Pages in Print Preview +author: Eugeniy Burmistrov +legacyId: 5539 +--- +# Show Two or More Pages in Print Preview +To preview two or more pages at one time, click the **Multiple Pages** ![previewButtonMultiplePages](../../../images/img7278.png) button on the toolbar. + +Then, in the invoked dialog, hover over the page icons, depending on the required number of pages to preview. + +![previewTwoOrMorePages](../../../images/img7279.png) + +When the required number of pages has been selected, click the popup window to close it and apply changes to the document view. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-by-entering-a-zoom-factor.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-by-entering-a-zoom-factor.md new file mode 100644 index 0000000000..1e8a43a17b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-by-entering-a-zoom-factor.md @@ -0,0 +1,15 @@ +--- +title: Zoom Print Preview by Entering a Zoom Factor +author: Eugeniy Burmistrov +legacyId: 4316 +--- +# Zoom Print Preview by Entering a Zoom Factor +To zoom to a specific zoom factor, do one of the following. +* Click the **Zooming** dropdown list button. The following list will be invoked. + + ![previewZoom](../../../images/img7284.png) + + Choose one of the zoom factor presets. +* You can manually enter any value into the **Zooming** box. + + ![previewZoomSpecified](../../../images/img7277.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-in-or-out.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-in-or-out.md new file mode 100644 index 0000000000..b8229381d4 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-in-or-out.md @@ -0,0 +1,14 @@ +--- +title: Zoom Print Preview In or Out +author: Eugeniy Burmistrov +legacyId: 4315 +--- +# Zoom Print Preview In or Out +## Zoom In and Out of a Document +* To zoom in a document, click the **Zoom In** ![previewButtonZoomIn](../../../images/img7268.png) button on the toolbar, or press CTRL+PLUS SIGN. +* To zoom out of a document, click the **Zoom Out** ![previewButtonZoomOut](../../../images/img7269.png) button on the toolbar, or press CTRL+MINUS SIGN. + +To zoom in or out of a document, you can also hold down CTRL and rotate the mouse wheel. + +## Use the Magnifier Tool +Use the **Magnifier Tool** ![previewButtonMagnifier](../../../images/img7265.png) to switch between 100% and "fit whole page" views. Simply click anywhere in the document, to toggle views. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-to-show-whole-pages-or-fit-content.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-to-show-whole-pages-or-fit-content.md new file mode 100644 index 0000000000..bf20bb4abf --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-winforms/zooming/zoom-print-preview-to-show-whole-pages-or-fit-content.md @@ -0,0 +1,25 @@ +--- +title: Zoom Print Preview to Show Whole Pages or Fit Content +author: Eugeniy Burmistrov +legacyId: 4317 +--- +# Zoom Print Preview to Show Whole Pages or Fit Content +## Zoom Documents to Fit Page Content +To zoom to the page or text width, click the **Zooming** box. The following list will be invoked. + +![previewZoom](../../../images/img7284.png) +* To zoom to the page width, click **Page Width**. +* To zoom to the text width, click **Text Width**. + +> [!NOTE] +> If the preview window will be resized later, the current zoom factor will also be changed, to fit the current page or text width. + +## Zoom Documents to Display Whole Pages +First, invoke the zooming dropdown (see above). +* To display one whole page at a time, click **Whole Page**. +* To fit two pages into the current view, click **Two Pages**. + +> [!NOTE] +> If the preview window will be resized later, the current zoom factor will be also changed in order to fit one or two pages. + +If you want to preview more pages simultaneously, refer to the [Show Two or More Pages in Print Preview](show-two-or-more-pages-in-print-preview.md) topic. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf.md new file mode 100644 index 0000000000..a09bdc3965 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf.md @@ -0,0 +1,70 @@ +--- +title: Print Preview for WPF +author: Anna Gubareva +legacyId: 116515 +--- +# Print Preview for WPF +The documents in this section provide information on the capabilities of the **Print Preview**, which is used to display an interactive document preview. + +The Print Preview provides a toolbar and menu that contain commands related to document viewing, navigating, exporting and printing. It also provides the **Document Map** for navigating throughout a document using bookmarks, the **Parameters** panel for editing report parameters, the **Search** panel for locating required data, etc. + +![EUD_WpfPrintPreview](../images/img124017.png) + +  + +**File Management** +* [Save a Print Preview to a File](print-preview-for-wpf/file-management/save-a-print-preview-to-a-file.md) +* [Load a Print Preview from a File](print-preview-for-wpf/file-management/load-a-print-preview-from-a-file.md) + +  + +**Printing and Page Setup** +* [Print a Document Using the Print Dialog](print-preview-for-wpf/printing-and-page-setup/print-a-document-using-the-print-dialog.md) +* [Print a Document Using Default Settings](print-preview-for-wpf/printing-and-page-setup/print-a-document-using-default-settings.md) +* [Change Print Settings Using the Page Setup Dialog](print-preview-for-wpf/printing-and-page-setup/change-print-settings-using-the-page-setup-dialog.md) +* [Scaling](print-preview-for-wpf/printing-and-page-setup/scaling.md) + +  + +**Navigating** +* [Navigate Between Pages](print-preview-for-wpf/navigating/navigate-between-pages.md) +* [Navigate Using Bookmarks](print-preview-for-wpf/navigating/navigate-using-bookmarks.md) +* [Navigate Using Thumbnails](print-preview-for-wpf/navigating/navigate-using-thumbnails.md) +* [Navigate Using the Hand Tool](print-preview-for-wpf/navigating/navigate-using-the-hand-tool.md) +* [Search for a Specific Text](print-preview-for-wpf/navigating/search-for-a-specific-text.md) + +  + +**Interactivity** +* [Content Editing in Print Preview](print-preview-for-wpf/interactivity/content-editing-in-print-preview.md) + +  + +**Zooming** +* [Zooming](print-preview-for-wpf/zooming.md) + +  + +**Passing Parameters** +* [Passing Parameter Values](print-preview-for-wpf/passing-parameter-values.md) + +  + +**Watermark** +* [Changing a Watermark](print-preview-for-wpf/changing-a-watermark.md) + +  + +**Exporting** +* [Exporting](print-preview-for-wpf/exporting/exporting.md) +* [Copying to the Clipboard](print-preview-for-wpf/exporting/copying-to-the-clipboard.md) +* [PDF-Specific Export Options](print-preview-for-wpf/exporting/pdf-specific-export-options.md) +* [HTML-Specific Export Options](print-preview-for-wpf/exporting/html-specific-export-options.md) +* [MHT-Specific Export Options](print-preview-for-wpf/exporting/mht-specific-export-options.md) +* [RTF-Specific Export Options](print-preview-for-wpf/exporting/rtf-specific-export-options.md) +* [DOCX-Specific Export Options](print-preview-for-wpf/exporting/docx-specific-export-options.md) +* [XLS-Specific Export Options](print-preview-for-wpf/exporting/xls-specific-export-options.md) +* [XLSX-Specific Export Options](print-preview-for-wpf/exporting/xlsx-specific-export-options.md) +* [CSV-Specific Export Options](print-preview-for-wpf/exporting/csv-specific-export-options.md) +* [Text-Specific Export Options](print-preview-for-wpf/exporting/text-specific-export-options.md) +* [Image-Specific Export Options](print-preview-for-wpf/exporting/image-specific-export-options.md) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/changing-a-watermark.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/changing-a-watermark.md new file mode 100644 index 0000000000..dd9f1e3007 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/changing-a-watermark.md @@ -0,0 +1,29 @@ +--- +title: Changing a Watermark +author: Anna Gubareva +legacyId: 116496 +--- +# Changing a Watermark +With the Print Preview, you can add a text watermark in a document, or turn a picture into a document's background. It is also possible to use both textual and image watermarks simultaneously. + +To invoke the **Watermark** dialog, click the **Watermark** ![WPFDesigner_Toolbar_Watermark](../../images/img120432.png) button on the toolbar. + +## Adding a Text Watermark +To add a text watermark, open the **Text Watermark** tab. Input the required watermark's text or choose one of the provided options in the **Text** drop-down list. Then, define other text properties, such as direction, color, font, size, transparency, etc. + +![EUD_WpfPrintPreview_TextWatermark](../../images/img124092.png) + +## Adding an Image Watermark +To add a picture watermark, switch to the **Picture Watermark** tab. To load the image to be used as a watermark, click the ellipsis button for the **Image** property. In the invoked dialog, select the file containing the image that you wish to load and click **Open**. + +![EUD_WpfPrintPreview_ImageWatermark](../../images/img124093.png) + +Then, you can specify the picture's properties, such as the size mode, alignment, transparency, etc. + +## Specifying Watermark Properties +At the bottom of the **Watermark** dialog, you can select a watermark position behind or in front of the document, and specify the page range in which the watermark will be printed. + +These settings are in effect both for text and image watermarks. + +## Removing a Watermark +To remove watermarks from a document, click **Clear All** in the **Watermark** dialog. Then, click **OK** to save changes and close the dialog. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/copying-to-the-clipboard.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/copying-to-the-clipboard.md new file mode 100644 index 0000000000..970e8ff47d --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/copying-to-the-clipboard.md @@ -0,0 +1,17 @@ +--- +title: Copying to the Clipboard +author: Anna Gubareva +legacyId: 116498 +--- +# Copying to the Clipboard +Besides [exporting a document](exporting.md) to a third-party formatted file, you can copy a portion of the document content to the clipboard, and paste it into an editor compatible with one of the supported third-party formats. + +To copy document content to the clipboard, do the following. +1. Select the content of the previewed document by holding down the left mouse button and dragging the mouse pointer. The selected document elements are highlighted. + + ![EUD_WpfPrintPreview_Copying1](../../../images/img124059.png) +2. To copy the selected content, press CTRL+C or right-click anywhere within the highlighted area of the document, and select **Copy** in the context menu. + + ![EUD_WpfPrintPreview_Copying2](../../../images/img124060.png) + +When pasted to a third-party editor from the clipboard, the report content will automatically be converted to the target format. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/csv-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/csv-specific-export-options.md new file mode 100644 index 0000000000..e50729505a --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/csv-specific-export-options.md @@ -0,0 +1,21 @@ +--- +title: CSV-Specific Export Options +author: Anna Gubareva +legacyId: 116641 +--- +# CSV-Specific Export Options +When [exporting a document](exporting.md), you can define the following CSV-specific exporting options. + +![EUD_WpfPrintPreview_CsvExportOptions](../../../images/img124164.png) +* **Encoding** + + Specifies the encoding used in the exported document. +* **Text export mode** + + Specifies whether to use the formatting of data fields in the bound data source for cells in the exported document. If this option is set to **Text**, all data fields are exported to the CSV file as strings with the corresponding formatting embedded into those strings. If the option is set to **Value**, all formatting will be lost in the resulting document. +* **Text separator** + + Specifies a symbol used to separate text elements (comma by default). +* **Quote strings with separators** + + Specifies whether strings with separators should be placed in quotation marks in the exported document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/docx-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/docx-specific-export-options.md new file mode 100644 index 0000000000..7bf9c49d27 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/docx-specific-export-options.md @@ -0,0 +1,20 @@ +--- +title: DOCX-Specific Export Options +author: Anna Gubareva +legacyId: 118917 +--- +# DOCX-Specific Export Options +When [exporting a document](exporting.md), you can define DOCX-specific export options using the following dialog: + +![wpf-docx-export-options-dialog](../../../images/img129099.png) +* **Export mode** + + Specifies how a document is exported to DOCX. The following modes are available. + * The **Single file** mode allows export of a document to a single file without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file divided into pages. In this mode, the **Page range** option is available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. Use commas to separate page numbers. Use hyphens to set page ranges. +* **Export watermarks** + + Specifies whether the exported document should include watermarks (if they exist). \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/exporting.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/exporting.md new file mode 100644 index 0000000000..e32fae2b99 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/exporting.md @@ -0,0 +1,47 @@ +--- +title: Exporting +author: Anna Gubareva +legacyId: 116497 +--- +# Exporting +There are two options available for exporting a document to one of the supported third-party formats. +* [Export Document to a File on Disk](#export) +* [Send Exported File Using E-Mail](#send) + + + +## Export Document to a File on Disk +To export a document and save the resulting file on your hard drive, click the arrow for the **Export...** button and select the required format from the list. + +![EUD_WpfPrintPreview_ExportButton](../../../images/img124135.png) + +This invokes the **Export Document...** dialog with options for the selected format. + +![WPFDesigner_ExportDocumentDialog](../../../images/img120186.png) + +If you simply click the **Export...** button, the dialog will provide settings for the PDF format. Then, you can always change the export format directly in the dialog using the dedicated **Export format** drop-down list. + +In the **Export Document...** dialog, you should specify the path where the resulting file should be saved and choose whether or not to open the file after exporting. + +To access and customize advanced export options for the selected format, click the **More Options** link. + +![WPFDesigner_AdvExportDocumentDialog](../../../images/img120187.png) + +Specify the required format-specific options and click **OK** to initiate export of a report and save the resulting file. + + + +## Send Exported File Using E-Mail +To export a document and send the resulting file using e-mail, click the arrow for the **Send...** button and select one of the supported formats. + +![EUD_WpfPrintPreview_SendButton](../../../images/img124136.png) + +This invokes the **Send via E-Mail...** dialog with options for the selected format. + +![WPFDesigner_SendDialog](../../../images/img124137.png) + +If you simply click the **Send...** button, the dialog will provide settings for the PDF format. Then, you can always change the export format directly in the dialog using the dedicated **Export Format** drop-down list. + +In the **Send via E-Mail...** dialog, you should specify the path where the resulting file should be saved. The dialog also allows you to specify advanced export options for the selected format. To access and customize these format-specific options, click the **More Options** link. + +Specify the required options and click **OK** to initiate export of a report and save the resulting file. The saved file will be then attached to a new empty message in the default mail program. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/html-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/html-specific-export-options.md new file mode 100644 index 0000000000..4f0fca85e1 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/html-specific-export-options.md @@ -0,0 +1,42 @@ +--- +title: HTML-Specific Export Options +author: Anna Gubareva +legacyId: 116636 +--- +# HTML-Specific Export Options +When [exporting a document](exporting.md), you can define the following HTML-specific export options. + +![EUD_WpfPrintPreview_HtmlExportOptions](../../../images/img124159.png) +* **Export Mode** + + Specifies how a document is exported to HTML. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without preserving the page-by-page breakdown. + * The **Single file page-by-page** mode allows export of a document to a single file, while preserving page-by-page breakdown. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Page border color** + + Specifies the color of page borders from the available palettes. +* **Page border width** + + Specifies the width (in pixels) of page borders. +* **Title** + + Specifies the title of the created document. +* **Character set** + + Specifies the character set for the HTML document. +* **Remove carriage returns** + + Specifies whether to remove carriage returns. +* **Table layout** + + Specifies whether to use table or non-table layout in the resulting document. +* **Export watermarks** + + Specifies whether to export watermarks to HTML along with the remaining document content. +* **Embed images in HTML** + + Specifies whether to embed images in HTML content. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/image-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/image-specific-export-options.md new file mode 100644 index 0000000000..3f4da5059f --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/image-specific-export-options.md @@ -0,0 +1,30 @@ +--- +title: Image-Specific Export Options +author: Anna Gubareva +legacyId: 116643 +--- +# Image-Specific Export Options +When [exporting a document](exporting.md), you can define the following Image-specific exporting options. + +![EUD_WpfPrintPreview_ImageExportOptions](../../../images/img124166.png) +* **Image format** + + Specifies an image format to export a document. Available formats are BMP, EMF, WMF, GIF, JPEG, PNG, and TIFF. +* **Resolution (dpi)** + + Specifies the required image resolution (in dpi). +* **Export mode** + + Specifies how a document is exported to an image. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing the output into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Page border color** + + Specifies the color of page borders. +* **Page border width** + + Specifies the width (in pixels) of page borders. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/mht-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/mht-specific-export-options.md new file mode 100644 index 0000000000..10c99e68b0 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/mht-specific-export-options.md @@ -0,0 +1,39 @@ +--- +title: MHT-Specific Export Options +author: Anna Gubareva +legacyId: 116637 +--- +# MHT-Specific Export Options +When [exporting a document](exporting.md), you can define the following MHT-specific export options. + +![EUD_WpfPrintPreview_MhtExportOptions](../../../images/img124160.png) +* **Export mode** + + Specifies how a document is exported to MHT. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range**, **Page border color** and **Page border width** options are available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Page border color** + + Specifies the color of page borders from the available palettes. +* **Page border width** + + Specifies the width (in pixels) of page borders. +* **Title** + + Specifies the title of the created document. +* **Character set** + + Specifies the character set for the HTML document. +* **Remove carriage returns** + + Specifies whether to remove carriage returns. +* **Table layout** + + Specifies whether to use table or non-table layout in the resulting document. +* **Export watermarks** + + Specifies whether to export watermarks to HTML along with the remaining document content. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/pdf-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/pdf-specific-export-options.md new file mode 100644 index 0000000000..41902ca522 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/pdf-specific-export-options.md @@ -0,0 +1,43 @@ +--- +title: PDF-Specific Export Options +author: Anna Gubareva +legacyId: 116635 +--- +# PDF-Specific Export Options +When [exporting a document](exporting.md), you can define the following PDF-specific export options. + +![EUD_WpfPrintPreview_PdfExportOptions](../../../images/img124157.png) + +**General Options** +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Don't embed these fonts** + + Specifies font names which should not be embedded into the resulting file to reduce the file size. To separate fonts, use semicolons. +* **Convert Images to Jpeg** + + Specifies whether all bitmaps contained in the document should be converted to JPEG format during export to PDF. +* **Images quality** + + Specifies the document's image quality level. The higher the quality, the bigger the file, and vice versa. +* **Compressed** + + Specifies whether the resulting file should be compressed. +* **PDF/A-2b** + + Specifies whether to enable document compatibility with the **PDF/A-2b** specification. + +**Password Security Options** + +![EUD_WpfPrintPreview_PdfExportOptions2](../../../images/img124158.png) + +These options allow you to adjust the security options of the resulting PDF file (e.g. enable open document, editing, printing and copying protection, and specify what changes are allowed). + +**Signature Options** + +If an X.509 certificate is applied to your report, you can maintain its options using the **Signature Options** property of the report **PDF Export Options**. + +**Additional Options** + +You can also fill the **Application**, **Author**, **Keywords**, **Subject**, and **Title** fields. These options specify the **Document Properties** of the created PDF file. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/rtf-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/rtf-specific-export-options.md new file mode 100644 index 0000000000..cdf5377742 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/rtf-specific-export-options.md @@ -0,0 +1,20 @@ +--- +title: RTF-Specific Export Options +author: Anna Gubareva +legacyId: 116638 +--- +# RTF-Specific Export Options +When [exporting a document](exporting.md), you can define the following RTF-specific exporting options. + +![EUD_WpfPrintPreview_RtfExportOptions](../../../images/img124161.png) +* **Export mode** + + Specifies how a document is exported to RTF. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range** option is available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Export watermarks** + + Specifies whether the exported document should include watermarks (if they exist). \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/text-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/text-specific-export-options.md new file mode 100644 index 0000000000..f0bc29bb01 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/text-specific-export-options.md @@ -0,0 +1,21 @@ +--- +title: Text-Specific Export Options +author: Anna Gubareva +legacyId: 116642 +--- +# Text-Specific Export Options +When [exporting a document](exporting.md), you can define the following TXT-specific exporting options. + +![EUD_WpfPrintPreview_TxtExportOptions](../../../images/img124165.png) +* **Encoding** + + Specifies the encoding used in the exported document. +* **Text export mode** + + Specifies whether to use the formatting of data fields in the bound data source for cells in the exported document. If this option is set to **Text**, all data fields are exported to the text file as strings with the corresponding formatting embedded into those strings. If the option is set to **Value**, all formatting will be lost in the resulting document. +* **Text separator** + + Specifies a symbol to separate text elements (TAB by default). +* **Quote strings with separators** + + Specifies whether strings with separators should be placed in quotation marks in the exported document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/xls-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/xls-specific-export-options.md new file mode 100644 index 0000000000..586f47efa6 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/xls-specific-export-options.md @@ -0,0 +1,33 @@ +--- +title: XLS-Specific Export Options +author: Anna Gubareva +legacyId: 116639 +--- +# XLS-Specific Export Options +When [exporting a document](exporting.md), you can define the following XLS-specific exporting options. + +![EUD_WpfPrintPreview_XlsExportOptions](../../../images/img124162.png) +* **Export mode** + + Specifies how a document is exported to XLS. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range** option is available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range** option is available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Sheet name** + + Specifies the name of the sheet in the created XLS file. +* **Text export mode** + + Specifies whether value formatting should be converted to the native XLS format string (if possible), or embedded into cell values as plain text. +* **Show grid lines** + + Specifies whether grid lines should be visible in the resulting XLS file. +* **Export hyperlinks** + + Specifies whether hyperlinks should be exported to the XLS document. +* **Raw data mode** + + Specifies whether to enable the raw data export mode. In this mode, only a document's actual data is exported to XLS, ignoring non-relevant elements, such as images, graphic content, font and appearance settings. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/xlsx-specific-export-options.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/xlsx-specific-export-options.md new file mode 100644 index 0000000000..e2adb8a9ac --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/exporting/xlsx-specific-export-options.md @@ -0,0 +1,33 @@ +--- +title: XLSX-Specific Export Options +author: Anna Gubareva +legacyId: 116640 +--- +# XLSX-Specific Export Options +When [exporting a document](exporting.md), you can define the following XLSX-specific exporting options. + +![EUD_WpfPrintPreview_XlsxExportOptions](../../../images/img124163.png) +* **Export mode** + + Specifies how a document is exported to XLSX. The following modes are available. + * The **Single file** mode allows export of a document to a single file, without dividing it into pages. + * The **Single file page-by-page** mode allows export of a document to a single file, divided into pages. In this mode, the **Page range** option is available. + * The **Different files** mode allows export of a document to multiple files, one for each document page. In this mode, the **Page range** option is available. +* **Page range** + + Specifies a range of pages which will be included in the resulting file. To separate page numbers, use commas. To set page ranges, use hyphens. +* **Sheet name** + + Specifies the name of the sheet in the created XLSX file. +* **Text export mode** + + Specifies whether value formatting should be converted to the native XLSX format string (if it is possible), or embedded into cell values as plain text. +* **Show grid lines** + + Specifies whether grid lines should be visible in the resulting XLSX file. +* **Export hyperlinks** + + Specifies whether to include hyperlinks into the resulting file. +* **Raw data mode** + + Specifies whether to enable the raw data export mode. In this mode, only a document's actual data is exported to XLSX, ignoring non-relevant elements, such as images, graphic content, font and appearance settings. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/file-management/load-a-print-preview-from-a-file.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/file-management/load-a-print-preview-from-a-file.md new file mode 100644 index 0000000000..941659007c --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/file-management/load-a-print-preview-from-a-file.md @@ -0,0 +1,19 @@ +--- +title: Load a Print Preview from a File +author: Anna Gubareva +legacyId: 116485 +--- +# Load a Print Preview from a File +To open a [previously saved](save-a-print-preview-to-a-file.md) document, do one of the following. +* Click the **Open** ![WPFDesigner_Toolbar_OpenIcon](../../../images/img120136.png) button on the toolbar. +* On the menu, click **Open**. + + ![EUD_WpfPrintPreview_MenuOpen](../../../images/img124020.png) +* Press CTRL+O. + +In the invoked **Open** dialog, select the required file and click **Open**. + +![EUD_WpfPrintPreview_OpenDialog](../../../images/img124021.png) + +> [!NOTE] +> If you open a document which was previously saved to the hard drive, it is impossible to change its page settings (e.g., page size, orientation, margins, etc.). So, the **Page Setup** and the **Scale** buttons will be disabled. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/file-management/save-a-print-preview-to-a-file.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/file-management/save-a-print-preview-to-a-file.md new file mode 100644 index 0000000000..dc34e89cc9 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/file-management/save-a-print-preview-to-a-file.md @@ -0,0 +1,23 @@ +--- +title: Save a Print Preview to a File +author: Anna Gubareva +legacyId: 116484 +--- +# Save a Print Preview to a File +If you've modified your document, and there's a chance you'll need to print out this document version more than once, you can save the document to a file on disk. After that, you can simply load your document and print it out, without having to apply the same changes again. + +To save a document to the file, do one of the following. +* Click the **Save** ![WPFDesigner_PreviewToolbar_Save](../../../images/img120173.png) button on the toolbar. +* On the menu, click **Save**. + + ![EUD_WpfPrintPreview_MenuSave](../../../images/img124018.png) +* Press CTRL+S. + +In the invoked **Save As** dialog, locate a folder where you want to store your file, enter the document name and click **Save**. + +![EUD_WpfPrintPreview_SaveAsDialog](../../../images/img124019.png) + +The document is saved with the **.prnx** file extension. Note that this extension will be added to the file name even if you enter another one. + +> [!NOTE] +> If you [open a document](load-a-print-preview-from-a-file.md) that was previously saved to the hard drive, it is impossible to change its page settings (e.g., page size, orientation, margins, etc.). So, the **Page Setup** and the **Scale** buttons will be disabled. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/interactivity/content-editing-in-print-preview.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/interactivity/content-editing-in-print-preview.md new file mode 100644 index 0000000000..7d1a6d3f8b --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/interactivity/content-editing-in-print-preview.md @@ -0,0 +1,13 @@ +--- +title: Content Editing in Print Preview +author: Anna Gubareva +legacyId: 118014 +--- +# Content Editing in Print Preview +If content editing is enabled for document elements, it is possible to customize the corresponding field values in Print Preview. + +To highlight all editing fields available in the document, click the **Editing Fields** ![eud-wpf-repors-editing-fields-button](../../../images/img126936.png) button on the toolbar. This button is not available when there are no such fields in the document. + +Clicking a field will invoke an appropriate editor. To apply the entered values and navigate between editing fields, use the TAB and SHIFT+TAB keys. In addition to editing text, you can switch check box states. + +![eud-wpf-print-preview-content-editing](../../../images/img126952.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-between-pages.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-between-pages.md new file mode 100644 index 0000000000..9ff60fce25 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-between-pages.md @@ -0,0 +1,13 @@ +--- +title: Navigate Between Pages +author: Anna Gubareva +legacyId: 116491 +--- +# Navigate Between Pages +To navigate between document pages, use the scrollbars or navigation buttons on the Print Preview's toolbar. These buttons allow you to switch to the first, previous, next, or last page of a document. + +![EUD_WpfPrintPreview_NavigationButtons](../../../images/img124041.png) + +To navigate to a specific page of a document, enter the required page in the dedicated editor in the Print Preview's status bar. + +![EUD_WpfPrintPreview_StatusBarNavigation](../../../images/img124177.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-bookmarks.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-bookmarks.md new file mode 100644 index 0000000000..dd9a22e535 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-bookmarks.md @@ -0,0 +1,11 @@ +--- +title: Navigate Using Bookmarks +author: Anna Gubareva +legacyId: 116492 +--- +# Navigate Using Bookmarks +If a document contains bookmarks, you can use the **Document Map** panel for navigation purposes. + +To switch to this panel, click the **Document Map** ![WPFDesigner_PreviewToolbar_DocumentMap](../../../images/img120178.png) button on the Print Preview's toolbar. To go to a specific bookmark, click it in the Document Map. As a result, the Print Preview navigates to a document element associated with the bookmark. + +![EUD_WpfPrintPreview_DocumentMap](../../../images/img124042.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-the-hand-tool.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-the-hand-tool.md new file mode 100644 index 0000000000..c0e2be59d0 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-the-hand-tool.md @@ -0,0 +1,13 @@ +--- +title: Navigate Using the Hand Tool +author: Anna Gubareva +legacyId: 116493 +--- +# Navigate Using the Hand Tool +The **Hand Tool** enables you to scroll content by dragging the document instead of using scrollbars. + +To activate the Hand Tool, right-click anywhere within the document, and in the invoked context menu, select **Hand Tool**. + +![EUD_WpfPrintPreview_SelectHandTool](../../../images/img124043.png) + +Then, after you click a document's page, the mouse pointer is changed from ![EUD_WpfPrintPreview_HandTool1](../../../images/img124044.png) to ![EUD_WpfPrintPreview_HandTool2](../../../images/img124045.png). Drag the mouse pointer to scroll the document. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-thumbnails.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-thumbnails.md new file mode 100644 index 0000000000..0f7a090748 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/navigate-using-thumbnails.md @@ -0,0 +1,11 @@ +--- +title: Navigate Using Thumbnails +author: Anna Gubareva +legacyId: 117811 +--- +# Navigate Using Thumbnails +You can use thumbnails to quickly navigate between document pages. + +To show thumbnails, click the **Thumbnails** ![WPFDesigner_PreviewToolbar_Thumbnails](../../../images/img125689.png) button on the Print Preview's toolbar. Click a thumbnail to navigate to the corresponding document page. + +![wpf-document-preview-thumbnails](../../../images/img126587.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/search-for-a-specific-text.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/search-for-a-specific-text.md new file mode 100644 index 0000000000..db25a93770 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/navigating/search-for-a-specific-text.md @@ -0,0 +1,15 @@ +--- +title: Search for a Specific Text +author: Anna Gubareva +legacyId: 116494 +--- +# Search for a Specific Text +To search for a specific text throughout a document, click the **Search** ![WPFDesigner_PreviewToolbar_Search](../../../images/img120179.png) button on the Print Preview's toolbar, or press CTRL+F. This invokes the **Search** panel. + +![WPFDesigner_SearchPanel](../../../images/img120301.png) + +In the search box on the left, input the text to find. Click the **Settings** button to invoke the dedicated submenu allowing you to specify whether or not to use a case-sensitive search, and specify if you are required to match the whole word during the search. + +![WPFDesigner_SearchPanelSettings](../../../images/img120302.png) + +To start searching, or search down again, click **Next**, or press ENTER or CTRL+G. To search backward, click **Previous** or press CTRL+SHIFT+G. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/passing-parameter-values.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/passing-parameter-values.md new file mode 100644 index 0000000000..93abb2c903 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/passing-parameter-values.md @@ -0,0 +1,13 @@ +--- +title: Passing Parameter Values +author: Anna Gubareva +legacyId: 116495 +--- +# Passing Parameter Values +Certain documents or reports allow you to control what data is to be displayed by specifying parameter values. + +To show the **Parameters** panel, click the **Parameters** ![WPFDesigner_PreviewToolbar_Parameters](../../images/img120177.png) button on the Print Preview's toolbar. This panel allows you to specify parameter values before document preview generation is started. + +Enter the required values using the corresponding parameter editors and click **Submit**. After changing the current values, you can revert back the previously selected values by clicking **Reset**. + +![EUD_WpfPrintPreview_Parameters](../../images/img124050.png) \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/change-print-settings-using-the-page-setup-dialog.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/change-print-settings-using-the-page-setup-dialog.md new file mode 100644 index 0000000000..a8fa3804eb --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/change-print-settings-using-the-page-setup-dialog.md @@ -0,0 +1,17 @@ +--- +title: Change Print Settings Using the Page Setup Dialog +author: Anna Gubareva +legacyId: 116488 +--- +# Change Print Settings Using the Page Setup Dialog +To invoke the **Page Setup** dialog, click the **Page Setup...** ![WPFDesigner_PreviewToolbar_PageSetup](../../../images/img120174.png) button on the Print Preview's toolbar. + +![EUD_WpfPrintPreview_PageSetupDialog](../../../images/img124038.png) + +The **Page Setup** dialog allows you to do the following. +* Change the paper size using the dedicated drop-down. +* Select page orientation (Portrait or Landscape). +* Specify page margins by entering the required top, left, bottom and right page margin values into the appropriate editors. + +> [!NOTE] +> If you're working with a document that was [loaded from a file](../file-management/load-a-print-preview-from-a-file.md), the **Page Setup** button on the toolbar is disabled. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-default-settings.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-default-settings.md new file mode 100644 index 0000000000..81d429ac2d --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-default-settings.md @@ -0,0 +1,9 @@ +--- +title: Print a Document Using Default Settings +author: Anna Gubareva +legacyId: 116487 +--- +# Print a Document Using Default Settings +To send a document directly to the default printer without customizing print settings, click the **Quick Print** ![WPFDesigner_PreviewToolbar_QuickPrint](../../../images/img120164.png) button on the Preview's toolbar. + +To learn how to select a printer, number of copies and other printer options, refer to the [Print a Document Using the Print Dialog](print-a-document-using-the-print-dialog.md) topic. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-the-print-dialog.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-the-print-dialog.md new file mode 100644 index 0000000000..f52c648a79 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-the-print-dialog.md @@ -0,0 +1,18 @@ +--- +title: Print a Document Using the Print Dialog +author: Anna Gubareva +legacyId: 116486 +--- +# Print a Document Using the Print Dialog +To print a document, do one of the following. +* Click the **Print...** ![WPFDesigner_PreviewToolbar_Print](../../../images/img120163.png) button on the toolbar. +* On the menu, click **Print...** + + ![EUD_WpfPrintPreview_MenuPrint](../../../images/img124034.png) +* Press CTRL+P. + +In the invoked **Print** dialog, specify the necessary settings (the printer name, number of copies, page range, etc.) and click **OK**. + +![EUD_WpfPrintPreview_PrintDialog](../../../images/img124035.png) + +To learn how to print the document without invoking the **Print** dialog, see the [Print a Document Using Default Settings](print-a-document-using-default-settings.md) topic. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/scaling.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/scaling.md new file mode 100644 index 0000000000..0b1623af33 --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/printing-and-page-setup/scaling.md @@ -0,0 +1,22 @@ +--- +title: Scaling +author: Anna Gubareva +legacyId: 116489 +--- +# Scaling +To scale a document, click the **Scale** ![WPFDesigner_PreviewToolbar_Scale](../../../images/img120175.png) button on the Print Preview's toolbar. This invokes the **Scale** dialog. + +![EUD_WpfPrintPreview_ScaleDialog](../../../images/img124039.png) + +The dialog provides two ways for scaling the document. +* **Scaling by entering a zoom factor**. + + Select the first option and set the required percentage value in the dedicated editor. +* **Scaling to fit into X pages**. + + Choose the second option and specify the required number of pages. + +Click **OK** to save changes and close the dialog. + +> [!NOTE] +> If you're working with a document [loaded from a file](../file-management/load-a-print-preview-from-a-file.md), you cannot use scaling. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/zooming.md b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/zooming.md new file mode 100644 index 0000000000..ccc732622e --- /dev/null +++ b/eud-for-devexpress-reports/reporting-for-desktop/print-preview/print-preview-for-wpf/zooming.md @@ -0,0 +1,13 @@ +--- +title: Zooming +author: Anna Gubareva +legacyId: 116490 +--- +# Zooming +To zoom in or out a document, click the **Zoom In** ![WPFDesigner_PreviewToolbar_ZoomIn](../../images/img120167.png) or **Zoom Out** ![WPFDesigner_PreviewToolbar_ZoomOut](../../images/img120165.png) button on the Print Preview's toolbar. The alternative way to zoom in and out the document is to hold down CTRL and rotate the mouse wheel. + +You can also zoom the document to a specific zoom factor. To do this, click the **Zoom** button and choose one of the zoom factor presets from the invoked list. + +![EUD_WpfPrintPreview_Zoom](../../images/img124049.png) + +In addition, this list provides items allowing you to display one whole page at a time and fit the document to the page width. If the preview window will be resized later, the current zoom factor will also be changed in order to fit one page or the current page width, respectively. \ No newline at end of file diff --git a/eud-for-devexpress-reports/reporting-for-desktop/toc.yml b/eud-for-devexpress-reports/reporting-for-desktop/toc.yml index 9028162acb..2775a6bce9 100644 --- a/eud-for-devexpress-reports/reporting-for-desktop/toc.yml +++ b/eud-for-devexpress-reports/reporting-for-desktop/toc.yml @@ -861,4 +861,184 @@ - name: Search Panel href: report-designer/report-designer-for-wpf/document-preview/search-panel.md - name: Document Map Panel - href: report-designer/report-designer-for-wpf/document-preview/document-map-panel.md \ No newline at end of file + href: report-designer/report-designer-for-wpf/document-preview/document-map-panel.md +- name: Print Preview for WinForms + href: print-preview/print-preview-for-winforms.md + items: + - name: File Management + items: + - name: Save a Print Preview to a File + href: print-preview/print-preview-for-winforms/file-management/save-a-print-preview-to-a-file.md + - name: Load a Print Preview from a File + href: print-preview/print-preview-for-winforms/file-management/load-a-print-preview-from-a-file.md + - name: Printing and Page Setup + items: + - name: Print a Document via the Print Dialog + href: print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-via-the-print-dialog.md + - name: Print a Document Using Default Settings + href: print-preview/print-preview-for-winforms/printing-and-page-setup/print-a-document-using-default-settings.md + - name: Change Printing Settings via the Page Setup Dialog + href: print-preview/print-preview-for-winforms/printing-and-page-setup/change-printing-settings-via-the-page-setup-dialog.md + - name: Specify Page Margins in Print Preview + href: print-preview/print-preview-for-winforms/printing-and-page-setup/specify-page-margins-in-print-preview.md + - name: Print Selection + href: print-preview/print-preview-for-winforms/printing-and-page-setup/print-selection.md + - name: Headers and Footers + items: + - name: Insert Page Header and Page Footer into Printed Documents + href: print-preview/print-preview-for-winforms/headers-and-footers/insert-page-header-and-page-footer-into-printed-documents.md + - name: Insert Page Numbers into Printed Documents + href: print-preview/print-preview-for-winforms/headers-and-footers/insert-page-numbers-into-printed-documents.md + - name: Insert Date and Time into Printed Documents + href: print-preview/print-preview-for-winforms/headers-and-footers/insert-date-and-time-into-printed-documents.md + - name: Insert the User Name into Printed Documents + href: print-preview/print-preview-for-winforms/headers-and-footers/insert-the-user-name-into-printed-documents.md + - name: Insert a Logo into Printed Documents + href: print-preview/print-preview-for-winforms/headers-and-footers/insert-a-logo-into-printed-documents.md + - name: Scaling + items: + - name: Scale Print Preview by Entering a Zoom Factor + href: print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-entering-a-zoom-factor.md + - name: Scale Print Preview by Specifying Width in Pages + href: print-preview/print-preview-for-winforms/scaling/scale-print-preview-by-specifying-width-in-pages.md + - name: Zooming + items: + - name: Zoom Print Preview In or Out + href: print-preview/print-preview-for-winforms/zooming/zoom-print-preview-in-or-out.md + - name: Zoom Print Preview by Entering a Zoom Factor + href: print-preview/print-preview-for-winforms/zooming/zoom-print-preview-by-entering-a-zoom-factor.md + - name: Zoom Print Preview to Show Whole Pages or Fit Content + href: print-preview/print-preview-for-winforms/zooming/zoom-print-preview-to-show-whole-pages-or-fit-content.md + - name: Show Two or More Pages in Print Preview + href: print-preview/print-preview-for-winforms/zooming/show-two-or-more-pages-in-print-preview.md + - name: Viewing and Navigating + items: + - name: Navigate Between Pages in Print Preview + href: print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-between-pages-in-print-preview.md + - name: Use the Hand Tool in Print Preview + href: print-preview/print-preview-for-winforms/viewing-and-navigating/use-the-hand-tool-in-print-preview.md + - name: Navigate in Print Preview Using Bookmarks + href: print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-bookmarks.md + - name: Navigate in Print Preview Using Thumbnails + href: print-preview/print-preview-for-winforms/viewing-and-navigating/navigate-in-print-preview-using-thumbnails.md + - name: Search for a Specific Text in Print Preview + href: print-preview/print-preview-for-winforms/viewing-and-navigating/search-for-a-specific-text-in-print-preview.md + - name: Switch Print Preview Display Mode + href: print-preview/print-preview-for-winforms/viewing-and-navigating/switch-print-preview-display-mode.md + - name: Interactivity + items: + - name: Content Editing in Print Preview + href: print-preview/print-preview-for-winforms/interactivity/content-editing-in-print-preview.md + - name: Watermark and Background + items: + - name: Change Watermark and Background Settings in Print Preview + href: print-preview/print-preview-for-winforms/watermark-and-background/change-watermark-and-background-settings-in-print-preview.md + - name: Remove a Watermark in Print Preview + href: print-preview/print-preview-for-winforms/watermark-and-background/remove-a-watermark-in-print-preview.md + - name: Exporting + items: + - name: Exporting from Print Preview + href: print-preview/print-preview-for-winforms/exporting/exporting-from-print-preview.md + - name: Copy to the Clipboard + href: print-preview/print-preview-for-winforms/exporting/copy-to-the-clipboard.md + - name: PDF-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/pdf-specific-export-options.md + - name: HTML-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/html-specific-export-options.md + - name: MHT-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/mht-specific-export-options.md + - name: RTF-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/rtf-specific-export-options.md + - name: DOCX-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/docx-specific-export-options.md + - name: XLS-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/xls-specific-export-options.md + - name: XLSX-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/xlsx-specific-export-options.md + - name: CSV-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/csv-specific-export-options.md + - name: TXT-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/txt-specific-export-options.md + - name: Image-Specific Export Options + href: print-preview/print-preview-for-winforms/exporting/image-specific-export-options.md + - name: Passing Parameters in Print Preview + href: print-preview/print-preview-for-winforms/passing-parameters-in-print-preview.md + - name: Miscellaneous + items: + - name: Customize Printing Settings of Charts + href: print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-charts.md + - name: Customize Printing Settings of Grids + href: print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-grids.md + - name: Customize Printing Settings of Pivot Tables + href: print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-pivot-tables.md + - name: Customize Printing Settings of Tree Views + href: print-preview/print-preview-for-winforms/miscellaneous/customize-printing-settings-of-tree-views.md + - name: Warnings and Error Messages in Print Preview + href: print-preview/print-preview-for-winforms/warnings-and-error-messages-in-print-preview.md +- name: Print Preview for WPF + href: print-preview/print-preview-for-wpf.md + items: + - name: File Management + items: + - name: Save a Print Preview to a File + href: print-preview/print-preview-for-wpf/file-management/save-a-print-preview-to-a-file.md + - name: Load a Print Preview from a File + href: print-preview/print-preview-for-wpf/file-management/load-a-print-preview-from-a-file.md + - name: Printing and Page Setup + items: + - name: Print a Document Using the Print Dialog + href: print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-the-print-dialog.md + - name: Print a Document Using Default Settings + href: print-preview/print-preview-for-wpf/printing-and-page-setup/print-a-document-using-default-settings.md + - name: Change Print Settings Using the Page Setup Dialog + href: print-preview/print-preview-for-wpf/printing-and-page-setup/change-print-settings-using-the-page-setup-dialog.md + - name: Scaling + href: print-preview/print-preview-for-wpf/printing-and-page-setup/scaling.md + - name: Navigating + items: + - name: Navigate Between Pages + href: print-preview/print-preview-for-wpf/navigating/navigate-between-pages.md + - name: Navigate Using Bookmarks + href: print-preview/print-preview-for-wpf/navigating/navigate-using-bookmarks.md + - name: Navigate Using Thumbnails + href: print-preview/print-preview-for-wpf/navigating/navigate-using-thumbnails.md + - name: Navigate Using the Hand Tool + href: print-preview/print-preview-for-wpf/navigating/navigate-using-the-hand-tool.md + - name: Search for a Specific Text + href: print-preview/print-preview-for-wpf/navigating/search-for-a-specific-text.md + - name: Interactivity + items: + - name: Content Editing in Print Preview + href: print-preview/print-preview-for-wpf/interactivity/content-editing-in-print-preview.md + - name: Zooming + href: print-preview/print-preview-for-wpf/zooming.md + - name: Passing Parameter Values + href: print-preview/print-preview-for-wpf/passing-parameter-values.md + - name: Changing a Watermark + href: print-preview/print-preview-for-wpf/changing-a-watermark.md + - name: Exporting + items: + - name: Exporting + href: print-preview/print-preview-for-wpf/exporting/exporting.md + - name: Copying to the Clipboard + href: print-preview/print-preview-for-wpf/exporting/copying-to-the-clipboard.md + - name: PDF-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/pdf-specific-export-options.md + - name: HTML-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/html-specific-export-options.md + - name: MHT-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/mht-specific-export-options.md + - name: RTF-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/rtf-specific-export-options.md + - name: DOCX-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/docx-specific-export-options.md + - name: XLS-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/xls-specific-export-options.md + - name: XLSX-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/xlsx-specific-export-options.md + - name: CSV-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/csv-specific-export-options.md + - name: Text-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/text-specific-export-options.md + - name: Image-Specific Export Options + href: print-preview/print-preview-for-wpf/exporting/image-specific-export-options.md