Description:
• When I click on the 'New row', it creates a blank new row.
• When I tab to a Decimal column and add something there and click tab (Note it isnot the last column), it creates an empty row.
I don't get this if instead of clicking tab, I actually click in the next cell.

Hello,
I hope this is a simple question. But how can I give a donut graph another size?
Because resizing the client area at designtime doesn't change the size of the donut.
Also not changing the Size property by hand.
Below is the code that I have. What do I miss?
this.chartView.AreaType = ChartAreaType.Pie;
DonutSeries series = new DonutSeries();
series.DataPoints.Add(new PieDataPoint(50, "Germany"));
series.DataPoints.Add(new PieDataPoint(70, "United States"));
series.DataPoints.Add(new PieDataPoint(40, "France"));
series.DataPoints.Add(new PieDataPoint(25, "United Kingdom"));
series.ShowLabels = true;
series.Size = new Size(400, 400); //***
this.chartView.Series.Add(series);
this.chartView.Series[0].ForeColor = Color.White;
this.chartView.Series[0].Font = new Font("Arial", 12, FontStyle.Bold);

Hi,
have got to make this panel which contains a lot of group controls and I have run out of height on the winform..I tried using the scrollable panel docked to the form but no good (although it did allow some scrolling...how do I get a scrollable panel at design time where I can load all these controls?

How do we validate from the collection editor? In my case, a collection property that pops up a collection editor. If I change an item's property values, my Validating/End-editing handlers do not get called.
Thanks.

Hello,
I am using a ShapedForm (without TitleBar control) instead of normal Form, but now it seems like my default Form events like keypress, keydown etc. are not working anymore.
How can I get these to work? I want the form to close when a user presses Escape. And possibly Minimize form when a user presses e.g. F10.
Do I need a Titlebar? If so, how can I make this titlebar Blue instead of grey? Plus some caption on it as well of course.

Hello
I need to use some dropdown cascading filters, when i change first of them the others must be fill with related data. I'm using unbound mode to add descriptors and trying to archieve this with EditorInitialized event but i don't know how to discriminate parts of the filter.
How can i archive this?
Thanks

Hi,
when I try to Add a RadForm the following pop-up coming.
"Unable to launch scenario wizard
---------------------------
Scenario wizard cannot be launched on the selected project
if the selected project's distribution version is not installed on the machine."
Can you please help me !!!
Is it possible to use one RadDateTimePicker and set it up for a range of seven days?
So, lets say the control says DateTime.Today is 12/1/2017, and I want a start date of seven days prior to this date. How can I do this?
C#
Thanks,
Hi,
am trying to make an app where the MDI parent is basically the container for the app pages..so don't want the MDI child titlebar in there at all.
Found on the forums that you open the child this way:
showform is the newly created form:
With showForm
.MdiParent = Me
.WindowState = FormWindowState.Maximized
.ShowIcon = False
.ControlBox = False
.MaximizeBox = False
.MinimizeBox = False
.FormBorderStyle = Windows.Forms.FormBorderStyle.None
.ShowInTaskbar = False
.Text = ""
.Show()
End With
I always get 2 title bars and all the controls on the child title bar are active???? when I have disabled them. Also when I maximise the child..THEN I get the single title bar, which is what I want.....what is going on here as it appears the maximize code function and the button function are different...I want the button functionality in the code.
Am using version 2017.3.1017.40 and RadForms
Any ideas??
