Hmm. Strange. With
flowChart.RoutingOptions.Anchoring = Anchoring.Reassign
it works???, although the arrows are rerouted a little bit strange. They go straight down (or up) from the anchor point for a short distance and then away from the table (only some do that).
Anyway, I'm not sure what you need, so here's what I set specifically:
table.ColumnCount = 3;
table.Scrollable = false;
table.EnabledHandles = Handles.Move;
table.CellFrameStyle = CellFrameStyle.None;
table.HandlesStyle = HandlesStyle.MoveOnly;
table.Columns[0].Width = 4;
table.Columns[1].Width = 22;
table.Columns[2].Width = 4;
table.RowCount = 3;
table[0, 0].RowSpan = 3;
table[1, 0].RowSpan = 3;
table.Rows[0].Height = 6;
table.Rows[1].Height = 6;
table.Rows[2].Height = 6;
table.Rows[0].AnchorPattern = new AnchorPattern(new AnchorPoint[]
{
new AnchorPoint(0, 50, true, false, Color.Black, 0),
new AnchorPoint(100, 50, false,true, Color.Green, 2)
});
table.Rows[0].AnchorPattern.Points[0].MarkStyle = MarkStyle.Circle;
table.Rows[0].AnchorPattern.Points[1].MarkStyle = MarkStyle.Circle;
table.Rows[1].AnchorPattern = new AnchorPattern(new AnchorPoint[]
{
new AnchorPoint(100, 50, false, true, Color.Blue, 2)
});
table.Rows[1].AnchorPattern.Points[0].MarkStyle = MarkStyle.Circle;
table.Rows[2].AnchorPattern = new AnchorPattern(new AnchorPoint[]
{
new AnchorPoint(100, 50, false, true, Color.Red, 2)
});
table.Rows[2].AnchorPattern.Points[0].MarkStyle = MarkStyle.Circle;
I'm also using a custom behavior, I took from another thread here, that you answered.
http://mindfusion.org/cgi/Forum/YaBB.pl?board=fcnet_disc;action=display;num=1153...I also have a completly different problem. Nice shadows and emboss from EffectsProvider work fine with Boxes, but not with Tables. Is this on purpose?
Daniel