par Data Dynamics - Type de produit : Composant / ASP.NET WebForms / ASP.NET AJAX (ATLAS) / .NET WinForms / .NET Class
Veuillez noter que les informations sur les produits ne sont pas disponibles en français.
Report on and explore relational and multidimensional data. Data Dynamics Business Intelligence Suite includes Data Dynamics Analysis and Data Dynamics Reports. Data Dynamics Reports integrates into Web and Windows Forms applications and provides a rich API with which to create and modify reports. Features include: master reports, additional chart types, banded list data regions, barcode report items, formatted text report items, themes and data visualizers. Documents created with Data Dynamics Reports can layout data using a combination of lists, tables, charts, matrices or banded lists in a layout-based report. Reports can be populated with data from an ADO.NET DataSet, .NET Object, SQL Server, Oracle, OLEDB, ODBC, or an XML data source. Data Dynamics Analysis is a free form visual analysis component for .NET developers. Data Dynamics Analysis takes the complexity out of standard data analysis and gives users a simple drag and drop environment that promotes exploring data visually. Data Dynamics Analysis is aimed towards developers whose business users need to analyze data.
Nos prix standard sont montrés ci-dessous. Veuillez vous connecter pour voir vos prix.
| Ajouter au Caddie | $ 881.02 | 1 Developer License Special Offer Price - Ends 30th November 2008 | Téléchargement (52.1 Mo) | |
| Ajouter au Caddie | $ 792.92 | 10-19 Developer License (Price per license, Minimum quantity 10) Special Offer Price - Ends 30th November 2008 | Téléchargement (52.1 Mo) | |
| Ajouter au Caddie | $ 704.82 | 20+ Developer License (Price per license, Minimum quantity 20) Special Offer Price - Ends 30th November 2008 | Téléchargement (52.1 Mo) |
Nos prix comprennent le support technique ComponentSource et, pour la majorité des produits téléchargeables, une sauvegarde en ligne ainsi qu'une mise à niveau GRATUITE si la nouvelle version est parue pendant les 30 jours consécutifs à votre achat. Toutes les ventes sont sujettes à nos Termes et Conditions standard à notre Politique de renvoi. Veuillez nous contacter si vous avez besoin d'une option de licence (licence de volume et versions précédentes) qui ne figure pas sur la liste ci-dessus.
Nos prix standard sont montrés ci-dessus. Veuillez vous connecter pour voir vos prix.
Data Dynamics Reports has all of the features found in RDL and has added several enhancements:
Rendering extensions are more than just an export, they render the report using the underlying layout of the report. This means that each report item can be rendered in a way that makes sense for that rendering extension. Rendering extensions available:
Data Dynamics Reports includes several controls that you can ship with your applications:
Data Dynamics Reports is not a replacement for ActiveReports for .NET. The goal behind creating Data Dynamics Reports is to create a reporting product in which users need not write code to create most basic reports.
What are the main differences between Data Dynamics Reports and Active Reports for .NET? Briefly, Data Dynamics Reports supports multiple data sources, data sets, and several different data regions. It also supports the use of VB.NET expressions to set properties. These expressions control the entire report generation process and replace the event handlers fired from within ActiveReports for .NET.
Expressions - With ActiveReports for .NET, if you want to set the color of a TextBox at run time based on its value, you have to write an event handler like the following:
private void detail_Format(object sender, EventArgs e)
{
if ( ( (double) textbox.Value) < 0.0 ) {
textbox.ForeColor = Color.Red;
}
else {
textbox.ForeColor = Color.Black;
}
}
In Data Dynamics Reports you instead use expressions- snippets of inline VB.NET code that when executed return the value desired. The expression to duplicate the event handler earlier would be written like so:
=IIF( Fields!field.Value < 0, “Red”, “Black” )
Multiple Data Sources/Data Sets - Each report can have multiple data sources and data sets associated with it. A data region and its children can only be associated with a single dataset. If multiple data sets are needed within a data region a subreport can still be used to link in the second data set. However, in most cases a data set that contains the join of both sets of data could be used.
Drilldown - Data Dynamics Reports has true drilldown support, that allows report authors to hide data conditionally in the report and expose it when requested. This is done by setting a report item to be hidden and then setting its ToggleItem property to the name of a textbox or image report item in the report.
Data Regions - A data region is a how a set of data is manipulated to be output by various report items (if needed). The List data region outputs itself once for every row of data in the data set or unique set of grouping expressions. The Banded List functions very similar to how a report in ActiveReports for .NET works. The Chart data region contains the same charting technology used in ActiveReports, but it has been updated to work with the Data Dynamics Reports ideas of a data set and expressions.
Nested Data Regions - In ActiveReports for .NET it is possible to add a chart to any section of the report, but that is the limit of nesting a data region. In Data Dynamics Reports data regions can also be added within data regions that accept report tiems, as long as the data is grouped. The ability to nest data regions means that report
authors don’t have to resort to using subreports which incur additional processing overhead that should be avoided if possible. A standard usage is to nest another data region within the List data region when it has detail grouping set. This set up allows the summary data to be output in the outer List while details are output in the inner List. Another usage is to take advantage of the grouping construct of the Matrix data region. This allows the report author to create a trellis display of charts, tables, or lists.
Matrix (Crosstab) - Data Dynamics Reports also features a matrix data region – sometimes called a crosstab or pivot table. This data region consists of a grid that adds columns and rows for distinct sets of field values in the data set. Many products exist for the same premise, to group data in n-ways and look at the data comes out. Each row or column group in a matrix can optionally have a subtotal column/row as well. This works by taking the same expression in the data cell and expanding its scope to include all of the data in that group.
Table - Data Dynamics Reports offers a Table data region which simplifies the positioning and sizing of report items in a grid format. The designer makes it easy to set gridlines on the table as well.
Data Dynamics Reports Frequently Asked Questions
Question: What are the differences between Data Dynamics Reports and ActiveReports for .NET 3.0?
Answer: Data Dynamics Reports targets reporting as a function of business intelligence applications while ActiveReports for .NET focuses on providing the most flexible object model that gives developers the freedom to customize and create complex reports with ease.
Data Dynamics Reports is designed to require less code "behind" the report and instead to use Visual Basic .NET expressions within report item properties to evaluate values. ActiveReports for .NET on the other hand, is a very developer-oriented system that features events for complete run-time customization of the report.
Both Data Dynamics Reports and ActiveReports for .NET include WebForms report preview controls, however ActiveReports also includes an ActiveX-based viewer that renders the report graphically instead of through HTML and CSS. Both products also include Windows Forms report preview controls and end-user designer components. Data Dynamics Reports ships with pre-built applications for report viewing and creation.
Data Dynamics Reports supports different data regions. In ActiveReports for .NET, a report is created in a series of bands, each band displaying its data in certain parts of the report. Data Dynamics Reports supports this data region, called the Banded List, and also supports Table, Chart, Matrix (crosstab), and List data regions.
Features available only in Data Dynamics Reports include:
Features available only in ActiveReports for .NET include:
Special Data Dynamics features in both products include:
Question: What are the differences between Data Dynamics Reports and Microsoft SQL Server Reporting Services 2005?
Answer: Both products implement the Report Definition Language (RDL) 2005 specification but from there the products differ.
Data Dynamics Reports introduces several features not found in SSRS.
Question: What is the Report Definition Language and why do I care that Data Dynamics Reports supports it?
Answer: The Report Definition Language (RDL) sets out both a file format and how elements in a report should be rendered. It also defines a base set of functionality that should be available in a report.
Some of the features required in the RDL 2005 specification include:
Data Dynamics Reports and Microsoft SQL Server Reporting Services are just two products that implement the RDL 2005 specification.
Question: Does Data Dynamics Reports require Microsoft SQL Server Reporting Services?
Answer: No, Data Dynamics Reports does not build on Microsoft SQL Server Reporting Services (SSRS). Data Dynamics Reports is a self-contained reporting library that contains its own report engine, API, viewer, and designer controls. Data Dynamics Reports can read and execute the RDL files produced by SSRS because the files follow the RDL format, but that is the only connection.
Data Dynamics Analysis
With Data Dynamics Analysis managers of all business industries are now able to spot new trends and dive deep into their data. Businesses such as financial services, sales, retail, marketing, software, hospitality, insurance, manufacturing, or government are now able to embed visual analysis to their .NET applications. The new Data Dynamics Analysis component offers pivot tables, bar charts, line charts and xy charts with interactive sorting and filtering to provide a complete ad hoc information source.
Rediscover Your Data
Data Dynamics Analysis allows you to find trends in your data. A single connection is able to generate thousands of chart variations using nothing more than a mouse. Each view gives the user a different look inside their business data. A different story can be told using the same data simply by reorganizing your field layouts. When data is seen in the right perspective, new findings appear that may have otherwise gone unnoticed.
Instant Dashboards
Data Dynamics Analysis offers the ability to connect multiple PivotView's to a single data source control. You can achieve a different view of the same data organized together using completely different fields against the same data source which would enable a business executive to gain deep insight to actionable data with little effort.
Connect to Any Data Source
Data Dynamics Analysis can connect to any data source. There is no limit to what type of data you can analyze with Data Dynamics Analysis. For easy setup, there are various data source controls that help bind to some of the more common data sources such as SQL Server, MySQL, Oracle, Microsoft Access, Microsoft Excel, Xml, DB2, Microsoft SQL Server Analysis Services, and many more.
Basically, if you can get access to your data in code, then Data Dynamics Analysis will allow you to explore it visually.
Visual Analysis in Your Browser
Data Dynamics Analysis installs with a Windows Forms component as well as an ASP.NET Ajax Web component. The Web component is capable of connecting to all of the same data sources. The result enables end users to experience a multi-tiered analysis solution for visualizing relational and multidimensional data over the Web.
Built-In Undo / Redo Support
The process of analyzing data involves looking for new insight that has never been discovered before. In order to support this fast analytical thinking, Data Dynamics Analysis provides the ability to undo any changes made to the view. This allows users to revisit their results at any time. Having this built right into the component saves hours and possibly weeks of development for such support. This is works in both the Windows Forms control and the ASP.NET Ajax control.
Filters Everywhere
Filtering data is an essential item to any data analysis experience. Data Dynamics Analysis is built to ensure that every conceivable way to filter data is possible and available directly from the component with no additional configurations.
Data Dynamics Analysis offers the ability to filter data in several ways. Simply by placing the control on a Windows Form or ASP.NET Web form, users are immediately able to begin drilling into their data and filtering their results to show only the data that are most important to their analysis goals.
Built In Toolbar
Almost all of the functionality that is within Data Dynamics Analysis is accessible using the built-in toolbar. This makes it easy for developers to access the commands and speeds development time. The toolbar can be hidden using the design time properties grid or programmatically with a single line of code.
Model Unstructured Data
One of the most powerful features of Data Dynamics Analysis is its ability to model unstructured data into a multidimensional format. Using a single Xml file, a flat set of data can be structured to support a full OLAP analysis experience. Data Dynamics Analysis comes with a utility to assist in this modeling process. When a schema configuration is not provided, a simple schema is built internally using intelligent defaults.
Data Dynamics Analysis allows the following objects to be modeled from unstructured data:
Custom Security
Deliver permission based security to every aspect of the analysis experience. Easily provide a role based security system using Data Dynamics Analysis' built in persist flags to load custom security settings per user.
Charts and Pivot Tables
Data Dynamics Analysis delivers both a pivot table and charting solution. It provides a wide array of charting capabilities; with the click of a button, users can turn a cross tab pivot table into a trellis display of feature rich chart displays.
CSS-like Styling
Data Dynamics Analysis offers a robust themes engine that enable users to get the look and feel that they want. Styling can be performed down to each aspect of the view using a CSS style approach. The product ships with many pre-built themes like Office 2007, Windows Classic, Windows Vista, and more. Configuring your own style is as easy as modifying an Xml file and does not require a full recompile of the hosting application.
Dockable Cards
Every aspect of Data Dynamics Analysis' user interface experience is capable of being displayed, repositioned, or hidden. This is a very nice feature, not only because it allows for a customized experience for each user, but also because the UI logic is fully encapsulated within the component itself. Card layouts can be saved to disk (or memory) and reloaded at any time.
Summarize Dynamic Data
Highlight a selection of data points and watch them summarize into various aggregate results on the Summary Card. This feature allows for detailed analysis against dynamic displays. Selecting data points and summarizing the values of those points is very handy for determining what values make up major outliers.
Extract Aggregate and Detail Data
Once a section of data has been highlighted, use the built in context menu to view the underlying data. All data sources are capable of extracting the aggregate data. When connected to an OLAP cube, users have the additional option of performing a "drill through" against the cube to retrieve the detailed transaction rows.
Paged Chart Displays
Analyze multiple pages of data easily using the built in Page Controller. By placing fields on the PageShelf, users are able to move pages of dynamic chart displays.
Ranking and Sorting
Using the built in context menus users are able to sort their display in many different ways. Members are able to be sorted and ranked in ascending or descending order as defined by the end user. When a field has a sorting function applied to it, a sort indicator is displayed on the field to inform the user that a custom sort operation is set on that field.
Persist Flags
Data Dynamics Analysis provides a robust architecture for saving and loading various aspects of the view. By combining flags on the Read() and Write() methods, users are able to load pre-saved layouts, permissions, card configurations, data, and styles without ever recompiling the hosting application. This is a very powerful feature and saves a lot of time when it comes to developing and deploying an analysis solution.
Present your Results
Built-In Printing Capabilities
Share your results with others by using the built-in print preview capabilities. All of the necessary UI aspects are sent to the printer as well to help describe the resulting view, including the various legends, the title, and the description text.
Codeless Development
Every aspect of the development process is capable of being configured at design time within Visual Studio 2005 IDE. It is possible to develop and deploy a full blown business intelligence solution that offers visual analysis against relational or multidimensional data without ever writing a single line of code.
Add Calculated Fields
Using Data Dynamics Analysis schema files, users are able to add calculated fields to their solution with little effort. Calculated fields can be sent directly to the data source, or they can be configured to be calculated in the data engine after the results have been queried from the data source. Both options have their advantages depending on the type of calculation.
Drill Down Into Your Data
Data Dynamics Analysis enables business users to drill down into databases to gain deep insight to their business data. By drilling down users are gaining deeper insight to their data. When rolling values up, values are automatically summarized.
Éditeur
Catégorie principale
Produits similaires
Catégories similaires