I use the RadPropertyGrid (Forms) to show a "complex" type. This type has one property A declared by an interface type and holding an object B.This property is read only but:
a) I would like to see all properties of that object B
b) I would like to allow changes to any of the properties of B (simple types)
This worked well with the "old" property grid of another vendor. After the migration the important (nested items) properties are gone.
Hi.Why e.CellElement.Text or Value > "1" is working and e.CellElement.Value > 1 does not work? Sorry for my English. And what if you need to compare with a Double, but not with the String? CDbl tried that did not work.
I try to achieve the following behavior:
I want to edit the content of a radtreenode by pressing f2.
I set the editor type to be TreeViewTextBoxEditor, and it's property multiline to be true.
Now I want my users to edit the content, and by pressing enter or key down make the edited content to start a new line, and continue the editing.
The default behavior is that the editor is closed, and the next node down is being selected.
Hello, I'm using CellFormatting event to convert TypeId's to the more human friendly text (Type name). However if I copy value (CTRL+C or access cell value via code) I get original (unformatted) value. Is there any way to get formatted cell text ?
It appears as though the RadAutoCompleteBox doesn't support the RightToLeft property like the RadTextBox does. Is this truly the case, or am I missing some property you can set with the RadAutoCompleteBox that will cause it to behave properly when you set RightToLeft to Yes?
We bought a telerik new version DLL i.e 2014.3.1202.40 but we found issue that DragDrop event is not firing. We read from your blog saying that DragDrop issue has been fixed in 2013 development version.Is that fixed or Is there any alternative solution?
I have a issue with how to set Y-axis as a categorical axis in
RadChartView
Document are as following
Data points are represented by a box where the height (width) of
the box is the distance between the point’s numerical value and
the categorical axis that plots the point. Bars may be either
“horizontal” or “vertical” depending on whether the categorical
axis is specified as an “X-axis” or as a “Y-axis”.
My code is as following
var barSeries = new BarSeries();
radChartView.Axes.Clear();
var verticalAxis = new CategoricalAxis();
verticalAxis.LabelFormat = "{0}";
verticalAxis.Title = "Time";
barSeries.VerticalAxis = verticalAxis;
var horizontalAxis = new LinearAxis();
horizontalAxis.Title = "Value";
horizontalAxis.LabelFormat = "{0}";
horizontalAxis.AxisType = AxisType.Second;
barSeries.HorizontalAxis = horizontalAxis;
radChartView.Series.Add(barSeries);
but the horizontalAxis is still the Categorical one
Could anyone give me a sample how to set Y-axis as Categorical Axis and Y-axis as Linear Axis to make bars show horizontally?