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 - "axis" animation with series using "both" axes
Summary: "axis" animation with series using "both" axes
Status: RESOLVED FIXED
Alias: None
Product: HTML5 JavaScript TeeChart
Classification: Unclassified
Component: Axes (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL: http://www.teechart.net/support/viewt...
Keywords:
Depends on:
Blocks:
 
Reported: 2018-02-16 03:26 EST by yeray alonso
Modified: 2018-02-16 03:27 EST (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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);