I need help with the node shape I have provided in the image. If this type of node can be drawn in your control , then can you please provide me with the code of the chart drawn in diagram control with the help of node (as per layout shown in attached png file) (include three or four nodes for the example).
I have tried to use it in custom shape but I didn't get any success.
I am using ui for WPF ( version latest ).
If you can help me out with this problem (as I have failed by other tool providers) then i might think of purchasing your product license soon.

Hello
I have a RadRibbonView that I would like to set some properties, and assign events, through the page code-behind.
e.g, setting the text on the various RadMenuItems in the Ribbon.
Any suggestions or help on how to do this is appreciated.
Thanks!
I am currently using a RadCartesianChart and ChartSeriesProvider to display multiple ScatterPointSeries. These series will have 10's of thousands of points in them. The only rendering option that has worked well for this is BitmapRenderOptions. However, when using BitmapRenderOptions I can't get tooltips to show and I can't select any points.
Is this a know limitation of the BitmapRenderOptions or is there a way to get it to work? I'm basically using the Large Data demo but trying to add a selection and tooltip behavior.
Selection and tooltip work fine if I use the default XamlRenderOptions, but the performance is too bad to use.

To simplify things, consider the following MainWindow class inheriting fromSystem.Windows.Window:
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Input;
namespace WpfApp1
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
StateChanged += MainWindow_StateChanged;
MouseUp += MainWindow_MouseUp;
}
private void MainWindow_StateChanged(object sender, EventArgs e)
{
if (WindowState == WindowState.Maximized)
{
Debug.WriteLine("Window Maximized");
}
}
private void MainWindow_MouseUp(object sender, MouseButtonEventArgs e)
{
Debug.WriteLine("Window MouseUp");
}
}
}When this window is in normal state if I double click its title bar then it is maximized and a Window.MouseUp event is raised, which results in the following output in VS Output pane:
Window Maximized Window MouseUp

Hi,
I’m trying to handle the drag and drop operation from a winforms control (RadGridView for now, can be RadTreeView or RadListView too) to the RadScheduleView WPF.
I have overridden the ConvertDraggedData from ScheduleViewDragDropBehavior class.
The event isn’t firing when I’m dragging a row from my winforms GridView over the schedule.
Is there a way to convert dragged data from the grid in winforms that make the event fires in WPF?
Or another way to achieve the expected behavior ?
Thanks.
Rémi
Hi,
Testing a gridview custom control with .NET 6 does not render on screen.
The same example with .net framework works.
public class CustomGrid : RadGridView
{
static CustomGrid()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomGrid), new FrameworkPropertyMetadata(typeof(CustomGrid)));
}
protected override void OnInitialized(EventArgs e)
{
base.OnInitialized(e);
}
} <Grid>
<my:CustomGrid Grid.Row="0"
x:Name="clubsGrid"
AutoGenerateColumns="False"
GroupRenderMode="Flat"
Margin="5">
<my:CustomGrid.Columns>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}"/>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Established}" Header="Est." DataFormatString="{}{0:yyyy}"/>
<telerik:GridViewDataColumn DataMemberBinding="{Binding StadiumCapacity}" Header="Stadium" DataFormatString="{}{0:N0}"/>
</my:CustomGrid.Columns>
</my:CustomGrid>
</Grid>Is the a way to select a style by key from styles in app.xaml in the telerik:RadGridView.Resources section
e.g.
<telerik:RadGridView.Resources>
<!-- add xaml to select key GridViewCellType1 -->
</telerik:RadGridView.Resources>
<!-- style in app.xaml -->
<Style x:Key="GridViewCellType1"
TargetType="telerik:GridViewCell">
<Setter Property="FontSize"
Value="14" />
<Setter Property="FontWeight"
Value="Normal" />
<Setter Property="CurrentBorderBrush"
Value="Transparent" />
<Setter Property="BorderBrush"
Value="Transparent" />
</Style>
The screenshot shows the application with the 2023.3.1009 build and on the right with the new 2023.3.1114 build.
As you can see on the bottom of the radpane the is now a blue strip in front of the control.
What do i need o check or change to get rid of that again and have the same result as before?