Hello
I need to give the numeric up down IsReadOnly property, and the user can't input data.
IsEditableProperty =False the user can insert data in the keys up/down arrows,page up/down keys.
How to implement this scenario?
Best regards
Ehud.
var connectorsToBeRemoved = shape.Connectors.Where(x => x.Name !=
"Auto"
).ToList();
foreach
(var connector
in
connectorsToBeRemoved)
{
shape.Connectors.Remove(connector);
}
private
static
void
WorkaroundTelerik2015Q1(RadDiagramShape shape)
{
var fakeConnector =
new
RadDiagramConnector {Offset = shape.Connectors[0].Offset, Name =
"Fake"
, IsEnabled =
false
,};
shape.Connectors.Add(fakeConnector);
Canvas.SetZIndex(fakeConnector, -999);
}
I am trying to display data vertically using wpf telerik RadGrid, which needs to be exported to excel in the same layout format. I have set LayoutTransform property of the telerik wpf radgrid to an angle so as to achieve this, but have run into below issues:
export the data with vertical layout intact,
grid lines disappeared after applying rotation style to the grid cells,
unable to hide the row selection highlight,
horizontal and vertical scrolls are not aligned correctly
Can someone please help me with these? I am also wondering, if is it preferable to use PivotGrid for such layout?
Any suggestions would be of great help!
Thanks in advance, Lax