Hi,
Does anyone have a snippet of code for the creation of a stacked bar chart?
thx.
Stacked Bar Chart Example
Re: Stacked Bar Chart Example
Hi,
Have you tried using the setMultiBar(MultiBars.STACKED) function?
Have you tried using the setMultiBar(MultiBars.STACKED) function?
Code: Select all
Bar bar1 = new Bar(tChart1.getChart());
bar1.fillSampleValues();
bar1.setMultiBar(MultiBars.STACKED);
Bar bar2 = new Bar(tChart1.getChart());
bar2.fillSampleValues();
bar2.setMultiBar(MultiBars.STACKED);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |