R2 sp1 2023 (#1099)
* Update pdf-device-information-settings.md (#1096) * Update blazor ui version * feat: add linear documentation without api ref links * update linear gauge documentation with correct api links * Create 2023 R2 SP1 upgrade path article Create 2023 R2 SP1 upgrade path article docs: Added getReportParameters() to HTML5 viewer API. Added getReportParameters() to HTML5 viewer API in documentation Update r2-2023-sp1.md Removed "SL is not supported" line * Update _config.yml --------- Co-authored-by: Dimitar Nikolov <dnikolov@progress.com> Co-authored-by: Dimitar Nikolov <dimitarnikolovv06@gmail.com> Co-authored-by: Todor Arabadzhiev <todor.arabadzhiev@progress.com>
This commit is contained in:
Родитель
31ec4dbfd0
Коммит
0d9951cc2d
|
@ -422,7 +422,7 @@ defaults:
|
|||
# "foo": "Bar"
|
||||
suiteversion: "R2 2023"
|
||||
kendosubsetversion: "2022.3.913"
|
||||
buildversion: "17.1.23.606"
|
||||
buildversion: "17.1.23.718"
|
||||
blazoruiversion: "4.1.0"
|
||||
|
||||
# Feedback Form Google Sheet ID
|
||||
|
|
|
@ -11,13 +11,13 @@ previous_url: /device-information-settings-pdf
|
|||
|
||||
<style>
|
||||
table th:first-of-type {
|
||||
width: 20%;
|
||||
width: 25%;
|
||||
}
|
||||
table th:nth-of-type(2) {
|
||||
width: 10%;
|
||||
}
|
||||
table th:nth-of-type(3) {
|
||||
width: 70%;
|
||||
width: 65%;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
@ -33,6 +33,7 @@ The following table lists the device information settings for rendering in PDF f
|
|||
| ------ | ------ | ------ |
|
||||
|ComplianceLevel|String|The PDF/A compliance level. The supported values are:<ul><li>__None__</li><li>__PDF/A-1b__</li><li>__PDF/A-2b__</li><li>__PDF/A-3b__</li></ul>Default value: __None__. If EnableAccessibility is set to True, due to incompatibility the ComplianceLevel metadata is ignored.|
|
||||
|EnableAccessibility|Boolean|Determines if the PDF will be generated in accordance to [PDF/UA (ISO standard 14289-1)](https://en.wikipedia.org/wiki/PDF/UA) specification.|
|
||||
|WriteDefaultAccessibleDescription|Boolean|This setting is applicable only when `EnableAccessibility` is set to `True`. The setting determines whether the engine should write the default description for a given report item or the custom one set through the [AccessibleDescription](/api/telerik.reporting.reportitembase#Telerik_Reporting_ReportItemBase_AccessibleDescription) property. The default value of the setting is `True`.|
|
||||
|SignCertFilename|String|The name of a certificate file. Absolute and relative paths are supported.<br/>You need to reference a '.pfx' file. The reason is that it includes both the public and private key that are required for the associated certificate. A '.cer' file embeds only the public key.|
|
||||
|SignCertPassword|String|The password required to access the X.509 certificate data.|
|
||||
|SignLocation|String|(Optional) The CPU host name or physical location of the signing.|
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
title: getReportParameters()
|
||||
page_title: The getReportParameters() method of the HTML5 Report Viewer explained
|
||||
description: "The getReportParameters() method of the Telerik Reporting HTML5 Report Viewer returns a collection of objects representing the evaluated report parameters."
|
||||
slug: telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/getreportparameters()
|
||||
tags: getreportparameters()
|
||||
published: True
|
||||
position: 7
|
||||
---
|
||||
|
||||
# The `getReportParameters()` method of the HTML5 Report Viewer
|
||||
|
||||
Returns an immutable array of name-value objects representing the current evaluated report parameters.
|
||||
|
||||
Returns: array containing the name and the value of each report parameter.
|
||||
|
||||
````JavaScript
|
||||
var reportViewer = $("#reportViewer1").data("telerik_ReportViewer");
|
||||
var currentParameters = reportViewer.getReportParameters();
|
||||
````
|
||||
|
|
@ -28,6 +28,7 @@ table th:nth-of-type(3) {
|
|||
| [bind(eventName, eventHandler)]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/bind(eventname,-eventhandler)%})|Binds event handlers to the specified event. For more information please see jQuery.fn.telerik_ReportViewer’s scale and scaleMode options in [Report Viewer Initialization]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/report-viewer-initialization%}#options).|
|
||||
| [clearReportSource()]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/clearreportsource()%})|Clears the current reportSource from the viewer internal state and from its persisted session in the browser. Called in order to force the viewer to respect the newly set reportSource on the next postback.|
|
||||
| [currentPage()]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/currentpage()%})|Gets the viewer’s current page that is displayed.|
|
||||
| [getReportParameters()]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/getreportparameters()%})|Gets an immutable array of name-value objects representing the current evaluated report parameters.|
|
||||
| [pageCount()]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/pagecount()%})|Gets the total page count of viewer’s currently displayed report.|
|
||||
| [refreshReport()]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/refreshreport()%})|Reloads/refreshes the current report.|
|
||||
| [reportSource()]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/api-reference/reportviewer/methods/reportsource()%})|Gets the current ReportSource - report and parameters.|
|
||||
|
|
|
@ -0,0 +1,83 @@
|
|||
---
|
||||
title: Linear Gauge
|
||||
page_title: Linear Gauge Configuration and Usage
|
||||
description: "Learn how to insert and configure the Telerik Reporting Linear Gaugein order to display linear scales such as thermometers, tanks, color indicators (LED)."
|
||||
slug: telerikreporting/designing-reports/report-structure/gauge/linear-gauge
|
||||
tags: telerik, reporting, report, items, Linear, gauge, properties
|
||||
published: True
|
||||
position: 2
|
||||
---
|
||||
|
||||
# Using the Linear Gauge Report Item
|
||||
|
||||
The steps below will demonstrate how to add the Telerik Reporting Linear Gauge report item to reports.
|
||||
|
||||
## Adding a Linear Gauge to the Report
|
||||
|
||||
* [Standalone Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/standalone-report-designer/overview%}) - The Gauge item can be inserted from the `Insert Ribbon`:
|
||||
|
||||
![An image of the Standalone Report Designer Insert Ribbon with the Gauge Report Item](../images/standalone-ribbon-linear-gauge-item.png)
|
||||
|
||||
* [Web Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/web-report-designer/overview%}) - The Gauge item can be inserted using the `Components Tab`:
|
||||
|
||||
![An image of the Web Report Designer Components Tab with the Gauge Report Item](../images/web-report-designer-linear-gauge-component.png)
|
||||
|
||||
* [Visual Studio Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/desktop-designers/visual-studio-report-designer/overview%}) - The Gauge item can be inserted from the [Visual Studio Toolbox](https://learn.microsoft.com/en-us/visualstudio/ide/reference/toolbox)
|
||||
|
||||
## Properties of the Gauge Report Item
|
||||
|
||||
The Gauge Report Item is a [data item]({%slug telerikreporting/designing-reports/connecting-to-data/data-items/overview%}) and as such inherits the properties of the [Telerik.Reporting.DataItem](/api/telerik.reporting.dataitem) class.
|
||||
|
||||
### Properties specific to the Appearance
|
||||
|
||||
* [`Mirrored`](/api/telerik.reporting.lineargauge#Telerik_Reporting_LinearGauge_Mirrored) - The Linear Gauge item generates a mirrored projection of its contents. The default layout for `Horizontal` is to display it below the ranges while for `Vertical`, it is rendered left of the gauge.
|
||||
* [`Orientation`](/api/telerik.reporting.lineargauge#Telerik_Reporting_LinearGauge_Orientation) - Determines whether the gauge will be rendered using a horizontal or vertical scale.
|
||||
* [`Reversed`](/api/telerik.reporting.lineargauge#Telerik_Reporting_LinearGauge_Reversed) - Determines the direction of the ranges and scale of the gauge. For `Horizontal` orientation, the default direction is left-to-right while for `Vertical` gauge, it is bottom-to-top.
|
||||
* [`Value`](/api/telerik.reporting.lineargauge#Telerik_Reporting_LinearGauge_Value) - Represents the value of the gauge for the current instance.
|
||||
|
||||
|
||||
|
||||
### Properties specific to the Presentation
|
||||
|
||||
* [`Indicator`](/api/telerik.reporting.lineargauge#Telerik_Reporting_LinearGauge_Indicator) - Represents a [LinearGaugeIndicator](/api/telerik.reporting.lineargaugeindicator) instance defining the visual type of the indicator.
|
||||
- [`Length`](/api/telerik.reporting.lineargaugeindicator#collapsible-Telerik_Reporting_LinearGaugeIndicator_Length) - Represents the length of the length of the indicator used to display the current value. The value is used as percentage ratio to the total gauge `Width`.
|
||||
- [`Offset`](/api/telerik.reporting.lineargaugeindicator#Telerik_Reporting_LinearGaugeIndicator_Offset) - Represents the length of the offset of the indicator used to display the current value relative to the gauge range. The value is used as percentage ratio to the total gauge `Width`. For example, if the value is 0, the indicator would start at the left border of the item and vice versa.
|
||||
- [`Style`](/api/telerik.reporting.lineargaugeindicator#Telerik_Reporting_LinearGaugeIndicator_Style) - Represents a [Style](/api/telerik.reporting.drawing.style) instance, used to style indicator elemen
|
||||
- [`Thickness`](/api/telerik.reporting.lineargaugeindicator#Telerik_Reporting_LinearGaugeIndicator_Thickness) - Represents a ratio of the value of the [Style.LineWidth](/api/telerik.reporting.drawing.style#Telerik_Reporting_Drawing_Style_LineWidth) of the indicator.
|
||||
- [`Type`](/api/telerik.reporting.lineargaugeindicator#Telerik_Reporting_LinearGaugeIndicator_Type) - Represents the type of indicator to be displayed next to the linear guage. The available options are listen in the [IndicatorType](/api/telerik.reporting.indicatortype) enum.
|
||||
* [`Labels`](/api/telerik.reporting.lineargauge#collapsible-Telerik_Reporting_LinearGauge_Labels) - The [LinearGaugeLabels](/api/telerik.reporting.lineargaugelabels) collection associated with this gauge item.
|
||||
- [`FirstVisibleValue`](/api/telerik.reporting.gaugelabelsbase#Telerik_Reporting_GaugeLabelsBase_FirstVisibleValue) - Represents the value of the minimum value for which a label will be rendered. Can be used to restraint the label set. If left empty, all labels will be visible.
|
||||
- [`Format`](/api/telerik.reporting.gaugelabelsbase#Telerik_Reporting_GaugeLabelsBase_Format) - Represents the format that will be applied on the labels of the linear gauge.
|
||||
- [`Offset`](/api/telerik.reporting.lineargaugelabels#Telerik_Reporting_LinearGaugeLabels_Offset) - Represents the offset of the label strings from the gauge range. The value is used as percentage ratio to the total gauge `Width`.
|
||||
- [`RenderingType`](/api/telerik.reporting.lineargaugelabels#Telerik_Reporting_LinearGaugeLabels_RenderingType) - Represents the selected `RenderingType` options for the given label.
|
||||
- [`LastVisibleValue`](/api/telerik.reporting.gaugelabelsbase#Telerik_Reporting_GaugeLabelsBase_LastVisibleValue) - Represents the value of the maximum value for which a label will be rendered. Can be used to restraint the label set. If left empty, all labels will be visible.
|
||||
- [`SegmentCount`](/api/telerik.reporting.gaugelabelsbase#Telerik_Reporting_GaugeLabelsBase_SegmentCount) - Represents the total count of labels that will be generated. It is recommended to be equal to the count of the `Ticks`.
|
||||
- [`Style`](/api/telerik.reporting.gaugelabelsbase#Telerik_Reporting_GaugeLabelsBase_Style) - Represents a [Style](/api/telerik.reporting.drawing.style) instance, used to style the labels.
|
||||
* [`Ranges`](/api/telerik.reporting.lineargauge#Telerik_Reporting_LinearGauge_Ranges) - The [LinearGaugeRanges](/api/telerik.reporting.lineargaugerange) collection associated with this gauge item. A gauge can have multiple ranges.
|
||||
|
||||
- [`End`](/api/telerik.reporting.lineargaugerange#Telerik_Reporting_LinearGaugeRange_End) - Represents the top value of the linear gauge's range.
|
||||
- [`EndWidth`](/api/telerik.reporting.lineargaugerange#Telerik_Reporting_LinearGaugeRange_EndWidth) - Represents the end width of the linear gauge item in a percentage of the total item `Width`. A value of 50 would mean that the last point of the gauge range area will be half the whole item's width.
|
||||
- [`Offset`](/api/telerik.reporting.lineargaugerange#Telerik_Reporting_LinearGaugeRange_Offset) - Represents the offset of the range area from the left/top border of the itme. The value is used as percentage ratio to the total gauge `Width`.
|
||||
- [`Start`](/api/telerik.reporting.lineargaugerange#Telerik_Reporting_LinearGaugeRange_Start) - Represents the bottom value of the linear gauge's range.
|
||||
- [`StartWidth`](/api/telerik.reporting.lineargaugerange#Telerik_Reporting_LinearGaugeRange_StartWidth) - Represents the start width of the linear gauge item in a percentage of the total item `Width`. A value of 50 would mean that the first point of the gauge range area will be half the whole item's width.
|
||||
- [`Style`](/api/telerik.reporting.lineargaugerange#Telerik_Reporting_LinearGaugeRange_Style) - Represents a [Style](/api/telerik.reporting.drawing.style) instance, used to style the range area.
|
||||
* [`Scales`](/api/telerik.reporting.lineargauge#collapsible-Telerik_Reporting_LinearGauge_Scales) - The [LinearGaugeScales](/api/telerik.reporting.lineargaugescalecollection) collection associated with this gauge item. A gauge can have multiple ranges. This is how the `Three-range` gauge is implemented.
|
||||
|
||||
- [`End`](/api/telerik.reporting.lineargaugescale#Telerik_Reporting_LinearGaugeScale_End) - Represents the top value of the linear gauge's scale line.
|
||||
- [`Offset`](/api/telerik.reporting.lineargaugescale#Telerik_Reporting_LinearGaugeScale_Offset) - Represents the offset of the scale line from the left/top border of the item. The value is used as percentage ratio to the total gauge `Width`.
|
||||
- [`Start`](/api/telerik.reporting.lineargaugescale#Telerik_Reporting_LinearGaugeScale_Start) - Represents the bottom value of the linear gauge's scale line.
|
||||
- [`Style`](/api/telerik.reporting.lineargaugescale#Telerik_Reporting_LinearGaugeScale_Style) instance, used to style the scale line
|
||||
* [`Ticks`](/api/telerik.reporting.lineargauge#collapsible-Telerik_Reporting_LinearGauge_Ticks) - The [LinearGaugeTicks](/api/telerik.reporting.lineargaugetickscollection) collection associated with this gauge item.
|
||||
- [`FirstVisibleIndex`](/api/telerik.reporting.gaugeticksbase#Telerik_Reporting_GaugeTicksBase_FirstVisibleIndex) - Represents the starting tick index from which ticks will be rendered. Can be used to constraint the tick set in a smaller range than the full scale. Ticks indexing starts at `0`.
|
||||
- [`LastVisibleIndex`](/api/telerik.reporting.gaugeticksbase#Telerik_Reporting_GaugeTicksBase_LastVisibleIndex) - Represents the last tick index until which ticks will be rendered. Can be used to constraint the tick set in a smaller range than the full scale. Ticks indexing starts at `0`.
|
||||
- [`Length`](/api/telerik.reporting.gaugeticksbase#Telerik_Reporting_GaugeTicksBase_Length) - Represents the size of the tick's visual element in percentage ratio to the gauge radius.
|
||||
- [`Offset`](/api/telerik.reporting.lineargaugeticks#Telerik_Reporting_LinearGaugeTicks_Offset) - Represents the offset of the range area from the left/top border of the itme. The value is used as percentage ratio to the total gauge `Width`.
|
||||
- [`SegmentCount`](/api/telerik.reporting.gaugeticksbase#Telerik_Reporting_GaugeTicksBase_SegmentCount) - Represents the total count of ticks that will be generated for the given gauge range.
|
||||
- [`Type`](/api/telerik.reporting.gaugeticksbase#Telerik_Reporting_GaugeTicksBase_TickType) - Represents the type of the shape that will be used for rendering the ticks.
|
||||
- [`Style`](/api/telerik.reporting.gaugeticksbase#Telerik_Reporting_GaugeTicksBase_Style) - Represents a [Style](/api/telerik.reporting.drawing.style) instance, used to style range sectors.
|
||||
|
||||
## See Also
|
||||
|
||||
* [Gauge Report Item Overview]({%slug telerikreporting/designing-reports/report-structure/gauge/overview%})
|
||||
* [Radial Gauge Configuration and Usage]({%slug telerikreporting/designing-reports/report-structure/gauge/radial-gauge%})
|
||||
* [Data Items]({%slug telerikreporting/designing-reports/connecting-to-data/data-items/overview%})
|
|
@ -31,11 +31,35 @@ Telerik Reporting provides the following Radial Gauge report item presets out of
|
|||
* Multi-Range
|
||||
|
||||
![An Image of the default look of the Multi-Range Radial Gauge](../images/radial-gauge-multi-range.png)
|
||||
|
||||
### Linear
|
||||
|
||||
Linear gauges are characterized by a linear scale which can be horizontal or vertical. They typically display a metric as a percentage of the length of a linear scale.
|
||||
|
||||
Telerik Reporting provides the following Linear Gauge report item presets out of the box:
|
||||
|
||||
* Single-Range Horizontal
|
||||
|
||||
![An image of the default look of the Single-Range Horizontal Linear Gauge](../images/linear-horizontal-gauge-single-range.png)
|
||||
|
||||
* Single-Range Vertical
|
||||
|
||||
![An image of the default look of the Single-Range Vertical Linear Gauge](../images/linear-vertical-gauge-single-range.png)
|
||||
|
||||
* Multi-Range Horizontal
|
||||
|
||||
![An Image of the default look of the Multi-Range Horizontal Linear Radial Gauge](../images/linear-horizontal-gauge-multi-range.png)
|
||||
|
||||
* Multi-Range Vertical
|
||||
|
||||
![An Image of the default look of the Multi-Range Vertical Linear Radial Gauge](../images/linear-vertical-gauge-multi-range.png)
|
||||
|
||||
## Next Steps
|
||||
|
||||
* [Getting Started with the Radial Gauge Report Item]({%slug telerikreporting/designing-reports/report-structure/gauge/radial-gauge%})
|
||||
* [Getting Started with the Linear Gauge Report Item]({%slug telerikreporting/designing-reports/report-structure/gauge/linear-gauge%})
|
||||
* [RadialGauge Class API Reference](/api/Telerik.Reporting.RadialGauge)
|
||||
* [LinearGauge Class API Reference](/api/Telerik.Reporting.LinearGauge)
|
||||
* [Demo Page for Telerik Reporting](https://demos.telerik.com/reporting)
|
||||
* [Knowledge Base Section](/knowledge-base)
|
||||
|
||||
|
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 3.8 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 3.3 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 4.7 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 4.5 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 41 KiB |
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 3.8 KiB |
|
@ -0,0 +1,113 @@
|
|||
---
|
||||
title: R2 2023 SP1
|
||||
page_title: R2 2023 SP1 Release Overview
|
||||
description: "See the changes introduced with Telerik Reporting R2 2023 SP1 that should be considered before upgrading, and the 3rd party products & packages this version depends on."
|
||||
slug: telerikreporting/upgrade/2023/r2-2023-sp1
|
||||
tags: r2,2023,sp1
|
||||
published: True
|
||||
position: 3
|
||||
---
|
||||
|
||||
# R2 2023 SP1 Changes and Dependencies
|
||||
|
||||
This article explains the manual changes required when upgrading to Telerik Reporting R2 2023 SP1 (17.1.23.718).
|
||||
|
||||
## Changes
|
||||
|
||||
### Native Blazor Report Viewer
|
||||
|
||||
The viewer is built with Telerik UI for Blazor __4.1.0__.
|
||||
|
||||
### WinUI Report Viewer
|
||||
|
||||
The viewer is built with Telerik UI for WinUI __2.7.0__.
|
||||
|
||||
### WPF Report Viewer for .NET Framework
|
||||
|
||||
The viewer is built with Telerik UI Controls for WPF __2023.2.718.40__. If you are using a newer version, consider adding binding redirects. For more information see: [How to Add report viewer to a WPF .NET Framework project]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/wpf-application/how-to-add-report-viewer-to-a-wpf-.net-framework-project%}).
|
||||
|
||||
### WPF Report Viewer for .NET Core
|
||||
|
||||
The viewer is built with Telerik UI Controls for WPF __2023.2.718.310__ and targets .NET Core 3.1.
|
||||
|
||||
### WPF Report Viewer for .NET 6
|
||||
|
||||
The viewer is built with Telerik UI Controls for WPF __2023.2.718.60__ and targets .NET 6.
|
||||
|
||||
### WPF Report Viewer for .NET 7
|
||||
|
||||
The viewer is built with Telerik UI Controls for WPF __2023.2.718.70__ and targets .NET 7.
|
||||
|
||||
### Report Designers
|
||||
|
||||
Standalone Report Designers for .NET Framework and .NET 6, and Web Report Designer now use schema version __http://schemas.telerik.com/reporting/2023/2.1__.
|
||||
|
||||
## Dependencies
|
||||
|
||||
### Web Report Designer Dependencies
|
||||
|
||||
The [Web Report Designer]({%slug telerikreporting/designing-reports/report-designer-tools/web-report-designer/overview%}) depends on the following libraries:
|
||||
|
||||
* Telerik Kendo UI (__2022.3.913__ or later)
|
||||
* jQuery (__1.9.1__ or later)
|
||||
* Browser's native support for promises. When the browser does not support promises the viewer will automatically load a promise polyfill from [Polyfill.io](https://polyfill.io) unless one is not already loaded in the application.
|
||||
|
||||
### HTML5 Report Viewer Dependencies
|
||||
|
||||
The [HTML5 Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/html5-report-viewer/overview%}) depends on the following libraries:
|
||||
|
||||
* Telerik Kendo UI (__2022.3.913__ or later)
|
||||
* jQuery (__1.9.1__ or later)
|
||||
* Browser's native support for promises. When the browser does not support promises the viewer will automatically load a promise polyfill from [Polyfill.io](https://polyfill.io) unless one is not already loaded in the application.
|
||||
|
||||
### Angular Report Viewer Dependencies
|
||||
|
||||
The [Angular Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/angular-report-viewer/angular-report-viewer-overview%}) depends on the following:
|
||||
|
||||
* Angular (__4.0.0__ or later)
|
||||
* jQuery (__3.2.1__)
|
||||
|
||||
### React Report Viewer Dependencies
|
||||
|
||||
The [React Report Viewer]({%slug telerikreporting/using-reports-in-applications/display-reports-in-applications/web-application/react-report-viewer/react-report-viewer-overview%}) depends on the following:
|
||||
|
||||
* React (__16.8.6__ or later)
|
||||
* React-DOM (__16.8.6__ or later)
|
||||
* jQuery (__3.2.1__)
|
||||
|
||||
### HttpClient Dependencies
|
||||
|
||||
Connecting a desktop report viewer (WinForms or WPF) to a REST service or Report Server instance requires the following NuGet packages:
|
||||
|
||||
* Newtonsoft.Json (__13.0.1__ or later for .NET Framework and .NET Core projects)
|
||||
* Microsoft.AspNet.WebApi.Client (__4.0.30506__ or later for .NET Framework projects, __5.2.7__ or later for .NET Core projects)
|
||||
|
||||
### WebServiceDataSource Component Dependencies
|
||||
|
||||
The [WebServiceDataSource]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/webservicedatasource-component/overview%}) requires the following NuGet packages:
|
||||
|
||||
* Microsoft.Net.Http (__2.0.20710__ or later)
|
||||
* Newtonsoft.Json (__13.0.0.0__ or later)
|
||||
|
||||
### ASP.NET WebAPI REST Report Service Dependencies
|
||||
|
||||
The [ASP.NET WebAPI REST Report Service]({%slug telerikreporting/using-reports-in-applications/host-the-report-engine-remotely/telerik-reporting-rest-services/rest-api-reference/overview%}) requires the following NuGet packages:
|
||||
|
||||
* Microsoft ASP.NET Web API (__4.0.20710.0__ or later)
|
||||
* Newtonsoft.Json (__13.0.0.0__ or later)
|
||||
|
||||
### ServiceStack Report Service Dependencies
|
||||
|
||||
The [ServiceStack Report Service]({%slug telerikreporting/using-reports-in-applications/host-the-report-engine-remotely/telerik-reporting-rest-services/servicestack-implementation/how-to-add-telerik-reporting-rest-servicestack-to-web-application%}) uses ServiceStack (__3.9.70.0__).
|
||||
|
||||
### CubeDataSource Dependencies
|
||||
|
||||
If you are using [CubeDataSource]({%slug telerikreporting/designing-reports/connecting-to-data/data-source-components/cubedatasource-component/overview%}), the version of your Microsoft.AnalysisServices.AdomdClient should be __10.0.0.0__ or later.
|
||||
|
||||
### Database Cache Provider Dependencies
|
||||
|
||||
If you are using [Database Cache Provider]({%slug telerikreporting/using-reports-in-applications/export-and-configure/cache-management/other-reportviewer-controls/configuring-the-database-cache-provider%}), the version of your Telerik Data Access ORM should be __2015.1.225.1__ or later.
|
||||
|
||||
### Internal Cache
|
||||
|
||||
The internal cache uses SQLite version __3.33.0__ for .NET Framework projects and __3.38.0__ for .NET Core and .NET 6+ projects.
|
Загрузка…
Ссылка в новой задаче