Click here to Skip to main content
15,908,111 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I want to draw a 'stacked column chart' in VB.Net in which a series data is just stacked one above the other in the same column.

Let me explain: Suppose I have three series of data each having 5 values like this:
Series 1: (a1,b1,c1,d1,e1)
Series 2: (a2,b2,c2,d2,e2)
Series 3: (a3,b3,c3,d3,e3)

At present if you draw the stacked column chart it will draw each column with in the following way:
Stacked column 1: a1,a2,a3
Stacked column 2: b1,b2,b3
Stacked column 3: c1,c2,c3
Stacked column 4: d1,d2,d3
Stacked column 5: e1,e2,e3

But what I want is to have just three stacked columns like this:
Stacked column 1: (a1,b1,c1,d1,e1)
Stacked column 2: (a2,b2,c2,d2,e2)
Stacked column 3: (a3,b3,c3,d3,e3)

That is each series point should be plotted one above the previous one.

This seems to be a simple chart - but IMHO it is not possible right now with the chart facility.

This is not a 'Grouped Stacked Column Chart' which just stacks one series value above the other and produces the columns.

I need to make this chart quite urgently.
Kindly help.

Rgds
Renga Iyengar
Posted
Updated 21-Sep-18 9:47am
v3

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900