Bagzli
Bagzli

Reputation: 6577

ASP.NET (C#) Column Chart on top of Column Chart

I am drawing 2 RangeColumn Graphs, problem is they appear next to each other. I am wondering if there is a setting that will allow me to draw the graphs on top of each other. So graph 2 will be visible over graph 1. Both graphs have different widths so I should still be able to see graph 1 in the back.

Here is a google image I found that describes what I want

enter image description here

Upvotes: 0

Views: 526

Answers (1)

KingCronus
KingCronus

Reputation: 4529

http://msdn.microsoft.com/en-us/library/dd456710.aspx

You need to set the DrawSideBySide property to false. You can then play with the widths to get your desired effect.

Upvotes: 3

Related Questions