or
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Cannot create an object of type 'Telerik.Reporting.Report' from its string representation 'ReportScheda.Report1, ReportScheda, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' for the 'Report' property.
"dd-MMM-yy" format.
I have used this code--
Chart1.PlotArea.XAxis.DataLabelsColumn =
"EntryDate"
Chart1.PlotArea.XAxis.Appearance.CustomFormat =
"dd-MMM-yy"
But this shows "dd-MMM-yy" string on XAxis instead of date in the above format.
Dim section As Processing.DetailSection = CType(sender, Processing.DetailSection) |
Dim rv As DataRowView = CType(section.DataItem, DataRowView) |
If CType(rv.Row("TagCount"), Integer) = 0 Then |
For i As Integer = 0 To section.Items.Count - 1 |
section.Items(i).Visible = False |
Next |
section.Visible = False |
End If |