or
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;