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
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
Actually, I needed YouRightGraphPane.Margin.Left= 0;
. After that just move graph left and right
You also must do this:
YouLeftGraphPane.Margin.Right = 0;
YouRightGraphPane.Margin.Left= 0;
This work for me)