Hi,
How can I use the ExportToImage extension with define the size (Width and Height) of the image. I do not wish to change the size of my framework element (RadCartesianChart ) in so that the image generated will be bigger in size.
This is the line of code to export to image:
Telerik.Windows.Media.Imaging.ExportExtensions.ExportToImage(CartesianChart, Path.GetFullPath(fileName), new PngBitmapEncoder());
Thanks in advanced.
Regards,
CS

When call Layout with SugiyamaSettings ,I wish to display the shapes from right to left ,root node dock at the right side
SugiyamaSettings settings = new SugiyamaSettings()
{
VerticalDistance = 10d,
HorizontalDistance = 5d,
IgnoreInvisible = true,
ComponentsGridWidth = transDiagram.ActualWidth,
Orientation = Telerik.Windows.Diagrams.Core.Orientation.Vertical,
};
transDiagram.Layout(layoutType, settings);
how to do?
when I copy multi lines and paste into column filtering textbox,
grid just filter the first line and omit the other lines.
for example, I wanna filter the following lines:
"Ali
Vahid"
grid just filter Ali.
there is any way to filter multi lines?
Thanks.


Hello,
I have a RadGridView that groups its items by an ID. There is some filtering done that results in some of the groups only having one row in them. I am struggling to find a way to hide or filter out the groups that only have one item in them. Thank you for any suggestions or help.
Dear Sirs,
I'm working with RadVirtualGrid using DataProvider. I would like to position the filter icons in the header.
You'll find attached an image of what I have now.
Thanks in advance,
I'm converting from 2011.3.1116.35 to 2017-3-913.40. This works in the old version but not in the new version.
My RadGridView is bound to an ObservableCollection named DrugList, however the ComboBoxColumn is bound to a different ObservableCollection named BrandGenericCodeList. I'm trying to do the binding in XAML:
<UserControl x:Class="MyApp.ucDrug"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:telerikData="clr-namespace:Telerik.Windows.Data;assembly=Telerik.Windows.Data"
xmlns:telerikGrid="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
...
<telerikGrid:RadGridView x:Name="radGridView"
Grid.Row="1"
AutoGenerateColumns="False"
CanUserDeleteRows="True"
IsSynchronizedWithCurrentItem="True"
ItemsSource="{Binding DrugList}"
ShowColumnFooters="True"
Deleting="radGridView_Deleting"
RowValidating="radGridView_RowValidating"
SelectionChanged="radGridView_SelectionChanged">
<telerikGrid:RadGridView.Columns>
<telerikGrid:GridViewDataColumn Header="Name" DataMemberBinding="{Binding DrugName}" />
<telerikGrid:GridViewComboBoxColumn Header="Brand/Generic"
DataMemberBinding="{Binding BrandGenericCode}"
DisplayMemberPath="Value"
IsLightweightModeEnabled="True"
ItemsSource="{Binding BrandGenericCodeList}"
SelectedValueMemberPath="Name"
UniqueName="BGC" />
Any help is appreciated. Thank you.
public void OnDragOver(object sender, DragEventArgs args) {... if ( [disallow drag] ) { args.Effects = DragDropEffects.None; } args.Handled = true; }