I'm using the HTML5 Teechart components from Steema. I cannot figure out how to get 2 series for the same x-value stacked on each other, where one serie contains negatives. For instance, for the same x values, if serie 1 has value 5, and serie 2 has value -5, they are 'stacked' upon each other... What I would like is see serie 1, from 0..5, and serie 2 from 0..-5
Chart1.addSeries(new Tee.Bar([5,3,2,7,1]) );
Chart1.addSeries(new Tee.Bar([-5,-3,-2,-7,-1]) );
Chart1.series.items[0].stacked=true;
Chart1.series.items[1].stacked=true;
Any help is appreciated.
thanks, bram