Hi
I am finally converting some RadChart controls to the newer RadChartView.
One of the chart I have to reproduce is a 3D barchart.
In the former control, I was able to add properties like this:
With MyChart.ChartArea
With .PlotArea.View3D
.Depth = 5
.Elevation = 10
.Rotation = 30
End With
End With
How can I get 3D bar chart with the newer control?

hi guys
in my app, need to add some data, and calculate sum of some cell. the user insert new data and again calculate sum.
in level 1 no problem, when user add new data (New Row) must be insert after Summary Row but add this add upper summary :-|
see the picture:
row 1 insert. some data add with a button, then by click on an other button, Summary row add and work perfectly.
now, user can add new data and must add below, but Row 2 insert up.
Hello,
I want to binding some properties to gridview programmatically. I have object hierarchy like that:
public class CLASS_A{ String propA; int propB; CLASS_B propC;}public class CLASS_B{ String propA; int propB; bool propC;}
The datasource will be a list of CLASS_A, and i want to bind propA from CLASS_A and some properties of CLASS_B.
There is no problem to binding properties from CLASS_A with field name, but I try same doing something like "propC.propA" but doesnt work.
What I am doing wrong?
Thank you and Regards!!!


Hi,
is there a way to have AutoEllipsis on selecteded item ?
it works fine with items in list but not on selected.
Thanks for your help :)
Hello ...
I have question about rotator ...
can rotator insert with other form (in this case i have 3 forms, and i want to insert it all) that i have made
i have form with gridview, can it be insert into rotator...
can i have the example ? please
Thanks before.
I'm trying to install Telerik UI and it always seems to roll back action when it's on Extracting files.
Is it a .NET Framework issue, I don't know..
Please help?

Is there a simple way, by setting a property, that the items that are checked that show up in the checked list area, (not in the drop down list) stay sorted as they are sorted in the Drop Down and not sort based on the order they checked them in the list?
If not, what would be the best way to make this happen?
Thanks

This is how I populate my ListView:
List<Users> ListUsers = (List<Users>)FormData.Resp;lv.Items.Clear();foreach (var User in Users){ ListViewDataItem ListViewDataItem = new ListViewDataItem(); lv.Items.Add(ListViewDataItem); ListViewDataItem[0] = User.ID.ToString(); ListViewDataItem[1] = User.BenutzerID; ListViewDataItem[2] = User.Nachname; ListViewDataItem[3] = User.Vorname; ListViewDataItem[4] = User.EMailAdresse;}
After selecting Items, the "Text" property of CurrentItem, SelectedItem or SelectedItems[0] is always empty. I tried also to get the Text by "lv.Items[lv.SelectedIndex].Text", but where is also the text property empty. But the SelectedIndex is correct.