Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 1538

Summary: Combining stacked and non stacked series doesn't work
Product: HTML5 JavaScript TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
URL: http://www.teechart.net/support/viewtopic.php?f=18&t=16103
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2016-05-12 10:45:17 EDT
Having three series, all them are drawn as stacked even if you set one of them as not stacked. Ie:

  var Series1=Chart1.addSeries(new Tee.Area());
  Series1.data.values=[192,72,24,12];
  Series1.stacked="no";

  var Series2=Chart1.addSeries(new Tee.Bar());
  Series2.data.values=[60,72,24,5];
  Series2.stacked="yes";

  var Series3=Chart1.addSeries(new Tee.Bar());
  Series3.data.values=[192,119,48,24];
  Series3.stacked="yes";