Hi Telrik,
I'm in process of evaluating the suitability of the telerik UI component particularly the Chart control. As per our requirement, we need to render different types of 2D and 3D charts. I know the WPF chart control best suits this requirement, but WinForm chart control is of more interest to me because of its inticipated ease of integration with my application. The problem is - I can't find a way to render 3D
charts with Winform chart control. Some links in this forum also suggests that Winform chart control
does not support 3D chart rendering.
http://www.telerik.com/community/forums/winforms/chart/suggestion-3d-chart.aspx
http://www.telerik.com/community/forums/winforms/chart/3d-graph.aspx
Does this(WinForm chart control not supporting 3D graphs) holds true even now? If yes, would it be possible to fix this in near future? If this is already fix, could you please provide a sample test application that demonstrate 3D chart rendering using WinForm Chart?
kind regards
Santosh
Dim lockedRows = _
From row In Me.dgTotalCosts.Rows _
Where row.Cells("colLocked").Value = True
Select New With {.Code = row.Cells("colCode").Value, _
.Description = row.Cells("colDesc").Value}
Dim lockedRows As IEnumerable(Of Telerik.WinControls.UI.GridViewRowInfo) = _
From row As Telerik.WinControls.UI.GridViewRowInfo In Me.dgTotalCosts.Rows _
Where row.Cells("colLocked").Value = True
Select New With {.Code = row.Cells("colCode").Value, _
.Description = row.Cells("colDesc").Value}
Telerik.WinControls.UI.
RadGridView
)?
Hello all,
I am using a hierarchical RadGridView with 3-level and I would like that the rows of 2nd level and the rows of 3rd level that meet a search criteria (such as the Notes column contains the value "perizia") appear with a different backcolor.
I have used, as described in the manual online, the event radGridView_RowFormatting (object sender, RowFormattingEventArgs e) but while I scroll the ChildRows collection I lose the information about the class Telerik.WinControls.UI.GridDataRowElement essential to allow formatting the row read.
How can I do to get this highlighting ?
Best regards,
Mauro Fiore
I have a GridViewMultiComboBoxColumn (width: 175) within a GridView (width: 500). The GridViewMultiComboBoxColumn's DataSource is set to the result of a query selecting several columns (id, name, city, state). The GridViewMultiComboBoxColumn dislays multiple columns when the user clicks on the drop-down arrow. Since the GridViewMultiComboBoxColumn is made up of several columns (id, name, city, state), when the drop-down arrow is clicked on, and the listbox drops down, the column width of the GridViewMultiComboBoxColumn (175) is rather narrow and its hard to see the information contained in the columns.
Is it possible to change the width, currently 175, of the listbox that drops down for a GridViewMultiComboBoxColumn contained within a GridView, yet keep the width of the column (175) within the GridView without changing? If so, can you show me with code.
In other words, can I keep the control's width at 175, before and after the user clicks the drop-down arrow, but make it much wider, when they click on the drop-down arrow and the drop-down portion (or listbox aspect) of the GridViewMultiComboBoxColumn is accessible?