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