Hi,
I need to create shapes that have multiple distinct input points (anchors) on one size. When I create a shape it has one anchor point for connections in the middle of each side. How do I, say, create a rectangular (say) shape with 3 distinct anchor points for connection on, say, the left size.
I can create multiple connections to the one point on the left side of the shape but I need multiple connections to multiple points on the same site.
Thanks
Rob
Hi, I'm trying to create a class deriving from the GridViewDataColumn. For example, I'd like to make the FontWeight Bold based on the bounded value. I was able to do it successfully for the view control by overriding CreateCellElement. So I thought overriding CreateCellEditElement would be the other method of the edit control but it is not working as expected. Attached is an illustration of the issue. Also, I have a sample project but I can't attach it here.
Thanks
Jan
Hi guys,
I've got a telerik rad grid view data bound to a CollectionViewSource with group descriptiors enabled. But it seems that when I edit a cell and then commit it, the row gets shifted to the bottom of the current grouping.
Is there any trick to stop this re-ordering?
How can I create a Gauge that looks like the one in the image attached ?
I am using RadHorizontalLinearGauge in Code Behind.
I want to know:
01.
FrameworkElementFactory borderFramework =
new
FrameworkElementFactory(
typeof
(Border));
02.
borderFramework.SetValue(Border.BackgroundProperty, brush);
03.
borderFramework.SetValue(Border.OpacityProperty, 0.7D);
04.
05.
// set a small space between the bar/columns just like chartjs does it
06.
borderFramework.SetValue(Border.BorderThicknessProperty,
new
Thickness(2, 0, 2, 0));
07.
08.
...
new
BarSeries(){
09.
...
10.
PointTemplate =
new
DataTemplate()
11.
{
12.
VisualTree = borderFramework,
13.
},
14.
}