I have an asp.net website where few pages contain Telerik Reports. I found that the pages with the reports retains data in memory even after I move to a different page closing the previous one (it keeps summing up). Every time I run a report, 10-15 Mb are added-up and do not get released. I think this is a memory leak.
Attached the picture I got using Justtrace. The rump up is basically caused by reports getting opened/launched on different webpage, one at time (switching between pages).
The long standstill situation of the memory at the higher value is basically no-activity on the website showing a page with the last report opened. As you can see the memory never gets released.
ChartSeriesItem seriesItem = new ChartSeriesItem();
seriesItem.PointAppearance.FillStyle.MainColor = Color;
seriesItem.PointAppearance.FillStyle.FillType = Telerik.Reporting.Charting.Styles.FillType.Solid;
ChartSeriesItem seriesItem = new ChartSeriesItem();
seriesItem.Appearance.FillStyle.MainColor = Color;
seriesItem.Appearance.FillStyle.FillType = Telerik.Reporting.Charting.Styles.FillType.Solid;
ChartSeries series = new ChartSeries();
series.Appearance.LineSeriesAppearance.Color = Color;
series.Appearance.LineSeriesAppearance.PenStyle = System.Drawing.Drawing2D.DashStyle.Solid;
I have been having an issue the area chart in the Telerik reporting for WPF. I have a sql query that returns a seriesID, DateTime, and Account Value.
When I set the chart up I set the GraphGroup Collection to the Valuation Date.
For the Series I have the Category Group set to the ValuationDateGroup, the Series GroupI have the series ID, for the Y I have the sum of the Account Value.
For the Graph Coordinate System the x axis is CategoryScale and the yAxis is NumericalScale
I can get the graph to display this way but I cannot get the date on the x axis to format without the time, and when I change the xAxis to DateTimeScale the graph is blank.
I want to be able to format the date to just show date and then only show the lables on the x axis ever 6 months.
I created these reports originally with an earlier version but they did not work so I upgraded the controls to the most recent. Now when I change the XAxis to DateTimeScale VS2008 errors out and closes. I can go to the designer.cs and code the report to DateTimeScale and it will run but I still have the same issue.
I had contacted Phone support and Rick Hellwege told me to set the Data.x propery of the Graph to DateTime, but I cannot find this property anywhere.