2

I was looking at this previous answer and trying to relate to my current situation. I have a line bar chart with too much whitespace around the chart area. Can the position property be used to reduce this white space?

my chart

Community
  • 1
  • 1
FistOfFury
  • 6,735
  • 7
  • 49
  • 57

1 Answers1

1

Did you try the suggestion from the post you linked:

Then you need IsMarginVisible = false to prevent the margin on the left and the right.

If that didn't help you can try the suggestion from this related answer:

Try playing with the InnerPlotPosition settings:

chart1.ChartAreas[0].InnerPlotPosition.X = 0;

Community
  • 1
  • 1
Onots
  • 2,118
  • 21
  • 28