I have a datasource that includes an undetermined time range. Because of this I need to display both Date & Time in the xAxis labels. I have seen the various posts on including date or time but don't see how I would include both. In my own code I currently can toggle between showing date or time by simply toggling the ValueFormat as seen below. How can I show both?
| _chart.AutoLayout = true; |
| _chart.PlotArea.XAxis.IsZeroBased = false; |
| _chart.PlotArea.XAxis.Appearance.ValueFormat = ChartValueFormat.ShortTime; |
| _chart.PlotArea.XAxis.Appearance.LabelAppearance.RotationAngle = 320; |