Completed
Last Updated: 26 Sep 2016 10:52 by ADMIN
ADMIN
Peshito
Created on: 10 Aug 2016 08:22
Category: Diagram
Type: Bug Report
0
Diagram: Editing a RadDiagramShape does not take into account the fontsize of the shape
Editing any diagram shape does not take into account the fontsize of the shape.

A possible workaround is to wire to shape's Loaded event as below:
private void RadDiagramTextShape_Loaded(object sender, RoutedEventArgs e)
        {
            RadDiagramTextShape shape = sender as RadDiagramTextShape;
            TextBox tBox = shape.ChildrenOfType<TextBox>().FirstOrDefault();
            tBox.FontSize = shape.FontSize;
        }


Available in LIB version: 2016.3.926
0 comments