// Error Line-->((Telerik.WinControls.UI.GridHeaderCellElement)(this.raGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).IsCurrent = false;//<-- Error Line((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).IsCurrentColumn = false;((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).IsSorted = true;((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).IsPinned = false;((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).Image = null;((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).Text = "??? ? ??? ????????";((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));((Telerik.WinControls.UI.GridHeaderCellElement)(this.radGridView1.GetChildAt(0).GetChildAt(1).GetChildAt(0).GetChildAt(1))).Padding = new System.Windows.Forms.Padding(0, 0, 16, 0);Index was out of range. Must be non-negative and less than the size of the collection.Parameter name: index

Dim contextMenu_Active As New RadContextMenu Dim menuItem1 = New RadMenuItem("Stop") menuItem1.ForeColor = Color.Red AddHandler menuItem1.Click, AddressOf menuItem1_Click Dim menuItem2 As New RadMenuItem("Remove") AddHandler menuItem2.Click, AddressOf menuItem2_Click contextMenu_Active.Items.Add(menuItem1) contextMenu_Active.Items.Add(menuItem2) Private Sub RadGridView_Active_ContextMenuOpening(ByVal sender As Object, ByVal e As Telerik.WinControls.UI.ContextMenuOpeningEventArgs) Handles RadGridView_Active.ContextMenuOpening If TypeOf Me.RadGridView_Active.CurrentRow Is GridViewDataRowInfo Then e.ContextMenu = contextMenu_Active.DropDown End If End Sub Private Sub menuItem1_Click(ByVal sender As Object, ByVal e As EventArgs) Dim index As Integer = Me.RadGridView_Active.Rows.IndexOf(TryCast(Me.RadGridView_Active.CurrentRow, GridViewDataRowInfo)) If index >= 0 Then Dim strGUID = Me.RadGridView_Active.Rows(index).Cells(0).Value Try ccJob.JobStop(strGUID) Catch ex As Exception End Try End If End Sub Private Sub menuItem2_Click(ByVal sender As Object, ByVal e As EventArgs) 'TODO End Sub1. When I render a chart on the screen I simply want to display the chart title at top left, such as:
(Chart Title)
2. However, when that chart is printed, (using RadChart.Printing.PrintChart()), I want the date printed as well, but right justified, and not as impacting, such as a smaller font or italic, such as this:
(Chart Title) Date Printed: 1/13/2011
Is this possible? I figure I could simply add the date printed part to the chart title text when a user prints a chart, and then remove it when printing is completed. However, that doesn't resolve the issues of a different font and right justification.
Can a chart have multiple titles, like a ChartMainTitle and ChartSubTitle? I think that would be the best solution, cause of course each could then be set up completely independently of each other to satisfy all user requests. If this isn't possible, could the feature be added to a future version?
Thanks much,
Dan