On vertical axis, the title is always rotated at 90°. When using short title like "Y" this become very strange, we must be able to set its rotation like the labels.
It would be very helpful to use the ReportParameters in own User Functions without passing them via an Expression.
When we have a string parameter, and we set the available values, we would like you to have a extra property to set if we have a blank value in the available list, it seems similar with the allow null properties, but sometimes we don't like the null checkbox, it needs more space and we can not translate it.
avatar Mike Posted 15 hours ago Is it possible to add the ability to assign a Style Name via Conditional Formatting in a future release of Report Designer in the Reporting Tool? We are using the Style Names for consistency with regards to fonts, sizes and padding. The ability to use the already existing Style Name as the Conditional Formatting result would be much simpler than having to recreate all of the Style Name's properties.
Telerik reporting for asp.net. I suggest to add the "locked" property to the each control that is put on the designer and to whole report likely this done in Crystal Reports from version 7. Sometimes it is hard not touch out suddenly some text box with mouse or keyboard on the designer and not change it size/location. Thank you very much Boris
Holding the Shift key should allow the selection of multiple items at once.
As the world of data visualization changes and the demands for features to the end-users allowing them to use visualisation methods such as dashboards and pivots allowing them to slice and dice runtime. Are there anything in the telerik roadmap which allows for this kind of product component? I see that competitors such as ComponentOne has Active analytics and Devexpress has dashboraddesigner and dashboardviwer as components in their toolbox. If anyone else are seeking the same oppertunity in the Telerik toolbox please feel free to comment. I am not really convinced this belongs in the reporting tool but as this was suggested by the team - so be it. What I am looking for is an end-user friendly way of visualising data without being knowledgeable of how to connect to databases and how to look for the right tables, but simply choosing pre populated "datasets" for presenting as - Charts - Gauges - Pivot tables - slice & dice - compare data based on easy selection of - date ranges - geografical presence So basically a dashboard designer allowing end user to Do Your Own. Thanks in advance for considering the suggestion
Add ability to create a rolling average series in a graph. Right now we can do aggregates over the whole series and RunningValue, but it would be good to be able to do RollingValue, where the number of previous values to include in the aggregate can be specified. This would allow us to do "rolling average over last 3 months" for example.
It should be possible to decorated Business Object Data Members with custom description, similar to FunctionAttribute and DescriptionAttribute for User functions, http://docs.telerik.com/reporting/expressions-user-functions#providing-metadata-for-functions It would be very useful to see custom documentation about data source types and -members when configuring a new Object Datasource for the report - more than Method, Type and Assembly which is displayed today. Original forum post: http://www.telerik.com/forums/providing-metadata-for-business-objects-(object-data-source)
Support printing to printers with unknown height such as Thermal Receipt Printers. I am currently testing with Epson TM-T20II to find that the vs2013 ide crashed whenever a print is attempted with a custom page size of 80mm width by 300mm height.
Note: This is related to Support Ticket #985541
When generating a report, we'd like to use a font which is not installed on the system, but which is distributed with our application in a sub-directory of our application's install directory as a .ttf font file. As part of application initialization, we're making the font available to the application using the below code.
private static PrivateFontCollection _privateFontCollection;
if (_privateFontCollection == null)
{
string fontPath = "";
try
{
_privateFontCollection = new PrivateFontCollection();
var exePathF = System.Reflection.Assembly.GetExecutingAssembly().Location;
var exeDirF = System.IO.Path.GetDirectoryName(exePathF);
fontPath = System.IO.Path.Combine(exeDirF, "sub dir with font file", "fontfile.ttf");
_privateFontCollection.AddFontFile(fontPath);
}
catch (Exception ex)
{
Debug.WriteLine("Exception adding font file, " + fontPath + ", " + ex);
}
}
With the above in place, we're able to specify the font face name provided by the .ttf file and the report works and correctly shows the font. The issue is when we export to PDF. It appears that even when we request full font embedding, the font must be installed on the machine (at the time the PDF is created) in order to be embeded in the PDF file.
What we need is to be able to create a PDF with the font embedded but without having installed the font to the machine. i.e. the PDF generation code needs to be able to handle a font which is not installed but which is added to the application via the PrivateFontCollection class and embed that font in the PDF file.
Please add support for PrivateFontCollection. When the program is deployed to a location where it does not and cannot install system level fonts (for various reasons), it makes an application built with Telerik Reporting volatile. I submitted a ticket due to a conflict we ran into. Telerik's response was to install the fonts on the system. However, the system controllers response is "this it why PrivateFontCollection was invented...you have the control to use any fonts you want." As a result, a developer has to either give up Telerik (ex. for DevExpress which supports it) or change the deployment entirely which seems utterly ridiculous. Due to some project constraints, we changed deployments in hopes of it being rectified.
Currently, we need to set the Height of the container to a very small value to collapse it to its minimum size when some children aren't visible. This need to be made in code behind, or via binding, and we need to do it for each container which can have children (direct or indirect) hidden. Not developers friendly at all. And this only work if the contain itself is always visible, otherwise no correct collapsing will be made (Telerik told me that "The space taken up by a panel item will be collapsed when the panel is invisible based on the panel's initial height.") A container should always be collapsed to the height taken by its visible children. When someone want to have an empty space, he should use padding, not the height of an invisible item.
I'd like to suggest that the behaviour (positions the viewer at the top) used for alternating between the bookmarks to the Report Header and Group Header using the document map, be applied to the Page Header too. It would be better, if the viewer always started at the top of the first page when using the Page Header. Bug Report ID: 902125 -- Scroll Top when alternating between bookmarks About the attachments: -OriginalReports - these files show the reports without clicking on the bookmarks -ReportScrollTopBetweenBookmarks - these files show the reports after clicking on the bookmarks
Possibility to select BarCode Encoding based on value on record dataItem.
I like how with Kendo UI for MVC you have the option of placing the references dlls into lib/kendouimvc, so projects are not dependent on having the correct version installed (or having the telerik control panel installed on a build server), and when updates occur it will copy over everything and make sure you don't miss something. It would be nice to have an option in the upgrade wizard extension thingy to have a section for including telerik reporting and it will put the necessary dlls in your project the same way. I can easily manually copy the files over, so this is just a pet peave thing, but it would be nice...
Presently, when you use the Fields property, you can only access simple type properties : "= Fields.CompanyName", "= Fields.CompanyPhone". The complexe types are not accessibles via the Fields property. If you want to print a complexe type property, you need to use the expression "= ReportItem.DataObject.Company.Name", "= ReportItem.DataObject.Company.Phone". In my opinion, this is not very intuitive. 2 differents ways to read a property depending of his type! It would be great to be able to access anything from the Fields property.
Hi there, It would be nice if the vector images included in reports could be preserved when exporting as a PDF. I have some emf images which I use in our reports and when viewing everything is lovely vector, as soon as I export it though the image is converted to a bitmap.