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 1993

Summary: "axis" animation with series using "both" axes
Product: HTML5 JavaScript TeeChart Reporter: yeray alonso <yeray>
Component: AxesAssignee: yeray alonso <yeray>
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=16823&p=74829#p74829
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2018-02-16 03:26:51 EST
"axis" animation doesn't modify "right" and "top" axes when the series has vertAxis or horizAxis set to "both".

Ie:

          var Chart1 = new Tee.Chart("canvas1");

          Chart1.addSeries(new Tee.Line()).addRandom(100);
          Chart1.addSeries(new Tee.Line()).addRandom(100);
          Chart1.addSeries(new Tee.Line()).addRandom(100);

          for (var i = 0; i < Chart1.series.count(); i++) {
            Chart1.series.items[i].vertAxis = "both";
          }

          Chart1.axes.bottom.minorTicks.visible = true;

          Chart1.draw();

          animation = new Tee.SeriesAnimation();
          animation.duration = 1000;
          animation.kind = "each";
          fadeAnimation = new Tee.FadeAnimation();
          fadeAnimation.duration = 800;
          fadeAnimation.fade.series = true;
          fadeAnimation.fade.marks = true;
          animation.mode = "linear";
          fadeAnimation.mode = "linear";
          animation.items.push(fadeAnimation);
          animation.animate(Chart1);