Hello Telerik Team,
I have a problem with the RadLabel location. I need the label in a RadGroupBox and I did it like this:
RadGroupBox time = new RadGroupBox();
time.Text = "Zeit Wahl";
time.Left = 20;
time.Top = 280;
RadLabelElement labelTime = new RadLabelElement();
labelTime.Text = "Zeitintervall von/bis wählen:";
labelTime.Location = new Point(20, 410);
time.GroupBoxElement.Header.Children.Add(labelTime);
panelTypeCharts.Controls.Add(time);
But The label is not moving to the location I gave it.Any suggestions?
Thanks very much
kind regards,
Alfonsina