or
How do I link timeline labels or milestone indication to a line chart?
Attached a visualization from excel.
group1.Groupings.Clear();if (intervalGroup == "HalfHour"){ group1.Groupings.AddRange(new Telerik.Reporting.Grouping[] { new Telerik.Reporting.Grouping("=dIntervalStart") }); txtIntervalGroupLabel.Value = "=dIntervalStart"; txtIntervalGroupLabel.Format = "{0:g}";}else{ group1.Groupings.AddRange(new Telerik.Reporting.Grouping[] { new Telerik.Reporting.Grouping("=dIntervalStart.Date") }); txtIntervalGroupLabel.Value = "=dIntervalStart.Date"; txtIntervalGroupLabel.Format = "{0:d}";}string intervalGroup = ReportParameters["IntervalGroup"].Value.ToString();Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;string intervalGroup = report.Parameters["IntervalGroup"].Value.ToString();
.PageSettings.Landscape = True.PageSettings.PaperSize = New Telerik.Reporting.Drawing.SizeU(Telerik.Reporting.Drawing.Unit.Inch(11.0R), Telerik.Reporting.Drawing.Unit.Inch(8.5R)) .Panel1.Width = New Telerik.Reporting.Drawing.Unit(10, Telerik.Reporting.Drawing.UnitType.Inch) .Panel2.Width = New Telerik.Reporting.Drawing.Unit(7, Telerik.Reporting.Drawing.UnitType.Inch) .Width = Telerik.Reporting.Drawing.Unit.Inch(11.0R)