or
ReportViewer.prototype.get_Height = function ()
{
var reportTable = document.getElementById(this.reportTableId);
var lastRow = reportTable.rows[reportTable.rows.length - 1];
var oldDisplay = lastRow.style.display;
lastRow.style.display = "none";
var viewer = document.getElementById(this.clientID);
var clientHeight = viewer.clientHeight;
lastRow.style.display = oldDisplay;
return clientHeight;
}
var lastRow = reportTable.rows[reportTable.rows.length - 1];
Is there a zooming facility available in the chart report. I have the zoom feature available in the Report Viewer but it zoom’s the entire page. The feature I would like to have is to zoom in the chart for clear view. The report I have consists of the table in the detail section and the chart in the Report Header section, and now I would like to zoom in the chart only not in the detail section.
I am using visual studio 2010, Telerik Reporting (licensed -TV446243)
Regards,
Saravanan.R