vincenzo Posted November 9, 2007 Report Share Posted November 9, 2007 If I have 6 series in a bar chart( 6 separate bars) , how would go about stacking it into 2 bars with 3 in each bar? Quote Link to comment Share on other sites More sharing options...
maried Posted November 9, 2007 Report Share Posted November 9, 2007 You can set the stacked property of series index 1, 2, 4, 5 to true. Chart1.Series[1].Stacked = true; //stacks series 1 on top of 0 Chart1.Series[2].Stacked = true; // stacks 2 on 1Chart1.Series[4].Stacked = true; Chart1.Series[5].Stacked = true; screenshots.zip Quote Link to comment Share on other sites More sharing options...
vincenzo Posted November 9, 2007 Author Report Share Posted November 9, 2007 Thanks..That worked great. Now I will have a happy boss! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.