Unplanned
Last Updated: 20 Nov 2017 15:36 by ADMIN
ADMIN
Dimitar
Created on: 27 Sep 2017 08:42
Category: Diagram, DiagramRibbonBar, DiagramToolBox
Type: Bug Report
0
FIX. RadDiagram - shapes not visible in a Windows 7 machines in bound mode.
To reproduce: 
Bind using a binding source:
DataSet ds = new DataSet();
ds.Tables.Add(shapesTable);
ds.Tables.Add(connectionsTable);

BindingSource bindingSource1 = new BindingSource { DataSource = ds };

radDiagram1.DiagramElement.DataLayer.DataSource = bindingSource1;


Workaround: 
Bind directly:
DataSet ds = new DataSet();
ds.Tables.Add(shapesTable);
ds.Tables.Add(connectionsTable);

radDiagram1.DiagramElement.DataLayer.DataSource = ds;
0 comments