Hi, I'm having 3 separate issues that is shown on the image below:
https://imgur.com/a/Jc5Ki
1) Right axis not working properly using the correct labels but will show the correct values upon refresh. I have played with the automated settings and it doesnt not seem to fix this issue. Right axis is drawn using verticalAxis = 'both'
2) Minorticks are not appearing on the bottom left, this is consistent on all sizes and will show up when you horizontally slide a little but I was wondering if there's a way to just make it consistently have minor ticks.
3) I was wondering if it was possible to vertically align the legend items (specifically center). As you can see it's difficult to play with the legend padding settings if there's an awkward amount of space between the legend and the bottom of the panel while not having much space between the legend and the axis.
edit: Didn't want to make a new post so adding another question here:
4) Is it possible to set the number of columns for the legend? For example if there are 3 series and the chart is very wide compared to its height, it tries to re-organize itself into a 2x2 but leaves the bottom-right empty so I'd prefer to just let it be one column
Minortick, Right axis and legend vertical alignment & col no
Re: Minortick, Right axis and legend vertical alignment & col no
Hello,
http://bugs.teechart.net/show_bug.cgi?id=1990
http://bugs.teechart.net/show_bug.cgi?id=1991
http://bugs.teechart.net/show_bug.cgi?id=1304
I can't reproduce the problem with this simple example. Could you please modify it so we can reproduce the problem here?NickH wrote:1) Right axis not working properly using the correct labels but will show the correct values upon refresh. I have played with the automated settings and it doesnt not seem to fix this issue. Right axis is drawn using verticalAxis = 'both'
I can reproduce this with the same example above, so I've added it to the public tracker:NickH wrote:2) Minorticks are not appearing on the bottom left, this is consistent on all sizes and will show up when you horizontally slide a little but I was wondering if there's a way to just make it consistently have minor ticks.
http://bugs.teechart.net/show_bug.cgi?id=1990
I can also reproduce this issue, so I've added it to the public tracker:NickH wrote:3) I was wondering if it was possible to vertically align the legend items (specifically center). As you can see it's difficult to play with the legend padding settings if there's an awkward amount of space between the legend and the bottom of the panel while not having much space between the legend and the axis.
http://bugs.teechart.net/show_bug.cgi?id=1991
Please note it's usually easier to track different issues when they are discussed in different threads.NickH wrote:edit: Didn't want to make a new post so adding another question here:
There's a ticket in the public tracker asking for something similar:NickH wrote:4) Is it possible to set the number of columns for the legend? For example if there are 3 series and the chart is very wide compared to its height, it tries to re-organize itself into a 2x2 but leaves the bottom-right empty so I'd prefer to just let it be one column
http://bugs.teechart.net/show_bug.cgi?id=1304
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Minortick, Right axis and legend vertical alignment & col no
Hi Veray, next time we'll make separate threads for individual issues.
For issue #2 I've been able to pinpoint the source of error: Tee.Animation via https://www.steema.com/files/public/tee ... mations.js
In particular, I reused some code for testing purposes:
which is from https://www.steema.com/files/public/tee ... roller.htm
And the issue does not exist when the animation is disabled. This applies for both my program and your simple program.
For issue #2 I've been able to pinpoint the source of error: Tee.Animation via https://www.steema.com/files/public/tee ... mations.js
In particular, I reused some code for testing purposes:
Code: Select all
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);
And the issue does not exist when the animation is disabled. This applies for both my program and your simple program.
Re: Minortick, Right axis and legend vertical alignment & col no
Hello,
I believe you meant issue #1. I've now fixed it in the version herenh128 wrote:For issue #2 I've been able to pinpoint the source of error
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |