2

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?

Here's what I mean

masterPane.Margin.All = 0f;
masterPane.InnerPaneGap = 0f;

do not seem to work

mrhotroad
  • 306
  • 3
  • 10

2 Answers2

1

Actually, I needed YouRightGraphPane.Margin.Left= 0;. After that just move graph left and right

mrhotroad
  • 306
  • 3
  • 10
0

You also must do this:

YouLeftGraphPane.Margin.Right = 0;
YouRightGraphPane.Margin.Left= 0;

This work for me)