As you can see in example:
plotOptions: {
series: {
stacking: 'normal'
}
},
the data is provided in series for John, Jane and Joe in series. Instead, what I would like to do, is just provide the data for Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas' such as:
Apples: 1,2,3,4,5 (will all display on the first bar) Oranges: 10,20,30,40,50 (will all display on the second bar) etc...
So I can provide the data PER BAR instead of across...
is it possible?
Thanks for reading,
Sean.