Page 1 of 1

TeeChart Java for Android v3.2012.1120 maintenance release

Posted: Wed Nov 21, 2012 3:06 pm
by Marc
Greetings,

Announcing a maintenance release of TeeChart Java for Android, Build 3.2012.1120.

The update may be downloaded via the customer page.

Release notes may be viewed here.
For more information see TeeChart's Mobile pages.

Regards,
Marc Meumann

Re: TeeChart Java for Android v3.2012.1120 maintenance release

Posted: Tue Mar 12, 2013 9:37 pm
by 17064597
When can we expect a new maintenance release?

I'm ready to release my software but I need some outstanding issues to be solved first (I have reported all of them). I do have the source code so a list source code diffs would suffice.

Re: TeeChart Java for Android v3.2012.1120 maintenance release

Posted: Wed Mar 13, 2013 8:28 am
by yeray
Hello,

Have you been provided with ticket numbers so I can tell you their status?
If they aren't closed, a new maintenance release published at this moment won't help you. And being a source code customer, if an issue is closed, we can directly tell you what changes to apply to your version of the sources so you can get the fix without having to wait for the next build.

Re: TeeChart Java for Android v3.2012.1120 maintenance release

Posted: Wed Mar 13, 2013 8:38 am
by yeray
Hi again,

Just found the following issues reported by you:
- TJ71016528: Fixed. If you are interested on the changes to apply to the sources, don't hesitate to ask for them in that thread.
- TJ71016479 ( same issue at StackOverflow): Fixed. I see you asked for the changes there. We'll reply you there.

I also see a new question here. We'll address it as soon as possible too.

Re: TeeChart Java for Android v3.2012.1120 maintenance release

Posted: Fri Mar 15, 2013 4:54 pm
by 17064597
Hello! To get my app up and running 100% I need these features fixed:

1) Most important: "Relative gradient" for area/bar chart, as described in the forum and here:
http://stackoverflow.com/questions/1401 ... a-gradient
http://stackoverflow.com/questions/1415 ... tchart-bar
2) Center the header title (with the same logic as the footer). http://stackoverflow.com/questions/1417 ... art-header
I did manage to work around this issue but I really believe the centering is erroneous as it is now.
3) Hiding the hand of the circular gauge. http://stackoverflow.com/questions/1400 ... and-cursor
4) Shadow color for header title. Fixed.

Re: TeeChart Java for Android v3.2012.1120 maintenance release

Posted: Wed Mar 20, 2013 9:35 am
by yeray
Hello Kristoffer,
znakeeye wrote: 1) Most important: "Relative gradient" for area/bar chart, as described in the forum and here:
http://stackoverflow.com/questions/1401 ... a-gradient
http://stackoverflow.com/questions/1415 ... tchart-bar
We'll investigate if we can somehow integrate this gradient relative to "external" values (not the same series min and max values) (TJ71016540).
In the meanwhile, what about the way around suggested here?
http://www.teechart.net/support/viewtop ... 022#p61022
znakeeye wrote:2) Center the header title (with the same logic as the footer). http://stackoverflow.com/questions/1417 ... art-header
I did manage to work around this issue but I really believe the centering is erroneous as it is now.
I think I missed your last comments there. Let me reply them at Stackoverflow.
znakeeye wrote:3) Hiding the hand of the circular gauge. http://stackoverflow.com/questions/1400 ... and-cursor
This is already fixed as said at StackOverflow. The fix consists on adding a condition at resetTransform(), in Graphics3DAndroid.java, to prevent the error:

Code: Select all

	public void resetTransform() {
		if (restoreCount>0)
			canvas.restoreToCount(restoreCount);
	}