Hi , I am using GridviewRelation to show the tree, but my data need to be shown like this:
Id ParentId
1 2
2 4
1 6
It means, sometimes we have the one child belong to many parents. It displays the below error, how can i fix it ?
Row with id '30' already appears in the hierarchy with parent id '27'. Each row in a self-reference hierarchy can appear only once in the hierarchy

hello everyone.i am trying create a half donut chart in my project.it has small area to dock as fill.
my problem is when i create a half donut rad chartview that view become so small.
it is look like this picture 1.There is many empty white area being and view size of charview is too much small.
but i want to make it view like at picture 2.
is that possible to create a half donut charview with bigger view size?if it is , how i can do that?I have already try change margin padding as 1px.
(this code: chart_PrimUretimi.Margin = new System.Windows.Forms.Padding(1); ) that doesn't help.

Morning,
I'm trying to embed a form that has a RadDock into my main application RadDock. The idea is that an end user would search for a project and the project would be loaded into the main forms RadDock (rdkMain). This would allow for more than one project to be shown at any given time. The project form could have multiple vendors which each would be loaded into the project RadDock(rdkProject). I understand that windows will only allow for a single form to be set to IsMdiContainer. Is there any way of doing this?
Thanks,
James

Is there a way to remove tabstops on some column's cells and not others?
Many of the users will only be using a keyboard and the form I'm building has a gridview with only 2 columns out of 12 that only need to tabbed through.

GridGroupByExpression groupExprCol1 = new GridGroupByExpression("col_1 Group By col_1");grid1.GroupDescriptors.Add(groupExprCol1);
GridViewSummaryItem sumItemValue = new GridViewSummaryItem("value", "{0,12:#,0;(#,0)}",
GridAggregateFunction.Sum);
GridViewSummaryRowItem sumGroupCol1 = new GridViewSummaryRowItem();
sumGroupCol1.Add(sumItemValue); grid1.MasterTemplate.SummaryRowsBottom.Add(sumGroupCol1);| Col 1 | Col 2 | Value |
| AA | Yes | 1 |
| AA | No | 2 |
| AA | No | 2 |
| AA | Yes | 5 |
| Total AA: | 10 | |
| BB | No | 3 |
| BB | No | 2 |
| Total BB: | 5 | |
| CC | Yes | 4 |
| Total CC: | 4 |

Either this is a bug or I'm doing something really, really silly! My money's on the 2nd option :)
I have a grid with a GridViewImageColumn that I have to set .IsVisible = False.
No matter what I do, it flips back to 'True'
What am I doing wrong?
BTW - This happens both at-runtime (dynamically setting the IsVisible property for this column = False does nothing) AND it happens at design time: You can load up the grid, select the Columns property, select the GridViewImageColumn and try changing IsVisible from True to False. Doesn't work :(
Any help would be very much appreciated!
-Curtis

Hi,
I'm working with a RadGridView and add a Template on it with :
GridViewRelation relation = new GridViewRelation(gridView.MasterTemplate, template);
Then I'm trying to customize the view of my gridview because I would like delete all borders on my Template.
I'm trying to do that but it's not enough to delete all borders. What I could do more ?
private void gridView_ViewCellFormatting(object sender, CellFormattingEventArgs e){GridDetailViewCellElement childCell = e.CellElement as GridDetailViewCellElement;GridGroupExpanderCellElement expanderCell = e.CellElement as GridGroupExpanderCellElement;if (e.CellElement.ViewTemplate.Parent != null){e.CellElement.BorderBoxStyle = BorderBoxStyle.SingleBorder;e.CellElement.BorderWidth = 0;e.CellElement.Padding = new Padding(0);}else if (childCell != null){childCell.BorderBoxStyle = BorderBoxStyle.SingleBorder;childCell.BorderWidth = 0;childCell.Padding = new Padding(0);childCell.PageViewElement.Header.Visibility = ElementVisibility.Collapsed;childCell.GridViewElement.DrawBorder = false;childCell.GridViewElement.GroupPanelElement.DrawBorder = false;RadPageViewStripElement stripElement = childCell.PageViewElement as RadPageViewStripElement;if (stripElement != null){stripElement.DrawBorder = false;stripElement.BorderBoxStyle = BorderBoxStyle.SingleBorder;stripElement.BorderWidth = 0;foreach (RadPageViewItem item in stripElement.Items){item.MaxSize = new Size(0, 1);item.Visibility = ElementVisibility.Hidden;}}}Thanks for your help,
Simon
