Reputation: 313
It's some kind of histogram. I've got MasterPane with two GraphPanes. MasterPane layout is SingleRow. How can I set no gap between panes?
masterPane.Margin.All = 0f;
masterPane.InnerPaneGap = 0f;
do not seem to work
Upvotes: 2
Views: 147
Reputation: 313
Actually, I needed YouRightGraphPane.Margin.Left= 0;
. After that just move graph left and right
Upvotes: 1
Reputation: 16
You also must do this:
YouLeftGraphPane.Margin.Right = 0;
YouRightGraphPane.Margin.Left= 0;
This work for me)
Upvotes: 0