Search found 44 matches

by znakeeye
Fri Mar 15, 2013 4:54 pm
Forum: Java
Topic: TeeChart Java for Android v3.2012.1120 maintenance release
Replies: 5
Views: 12258

Re: TeeChart Java for Android v3.2012.1120 maintenance release

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/14014925/how-to-set-absolute-area-gradient http://stackoverflow.com/questions/14155421/how-to-create...
by znakeeye
Wed Mar 13, 2013 8:05 pm
Forum: Java
Topic: Shadow color for header?
Replies: 6
Views: 13869

Re: Shadow color for header?

I'm wondering if you should also set these:

fontPaint.setTypeface(font.getTypeFace()); // getTypeFace() needs to be implemented
fontPaint.setUnderlineText(font.getUnderline());
fontPaint.setStrikeThruText(font.getStrikeout());
by znakeeye
Tue Mar 12, 2013 11:04 pm
Forum: Java
Topic: Proper gradient for bars/area
Replies: 5
Views: 13852

Proper gradient for bars/area

http://stackoverflow.com/questions/14155421/how-to-create-gradient-for-tchart-bar Was TJ71016478 fixed? Also, I believe this answer is incomplete. http://stackoverflow.com/questions/14014925/how-to-set-absolute-area-gradient In your answer, you set the start color to green: band1.getGradient().setSt...
by znakeeye
Tue Mar 12, 2013 10:37 pm
Forum: Java
Topic: Shadow color for header?
Replies: 6
Views: 13869

Re: Shadow color for header?

This is what I came up with. Correct? protected void drawString(int x, int y, final String text, final ChartBrush brush) { // FIX: Paint fontPaint = brush.getPaint(); fontPaint.setTextSize(font.getSize() * (float)(chart.getAspect().getFontZoom() * 0.01)); // Paint fontPaint = font.getPaint((float) (...
by znakeeye
Tue Mar 12, 2013 10:21 pm
Forum: Java
Topic: Shadow color for header?
Replies: 6
Views: 13869

Re: Shadow color for header?

Could you please share the patch for this bug?
by znakeeye
Tue Mar 12, 2013 9:37 pm
Forum: Java
Topic: TeeChart Java for Android v3.2012.1120 maintenance release
Replies: 5
Views: 12258

Re: TeeChart Java for Android v3.2012.1120 maintenance release

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.
by znakeeye
Sat Mar 02, 2013 10:35 pm
Forum: Java
Topic: Shadow color for header?
Replies: 6
Views: 13869

Shadow color for header?

http://stackoverflow.com/questions/1414 ... n-teechart

TJ71016479

Will this be added in the maintenance release? This feature is very important for me!
by znakeeye
Tue Feb 26, 2013 10:54 pm
Forum: Java
Topic: Axis with arrow?
Replies: 3
Views: 9237

Re: Axis with arrow?

Ah, got it!

Code: Select all

chart.getTools().clear();
by znakeeye
Tue Feb 26, 2013 10:50 pm
Forum: Java
Topic: Axis with arrow?
Replies: 3
Views: 9237

Re: Axis with arrow?

Code: Select all

AxisArrowPosition.START
worked better. Thanks.

How do I remove the arrow after adding it?
by znakeeye
Tue Feb 26, 2013 10:37 pm
Forum: Java
Topic: Right-aligned legend has no margin
Replies: 6
Views: 13507

Re: Right-aligned legend has no margin

Thanks. I tried that, but it doesn't work. However, I found a workaround: _chart.setLegendResolver(new LegendAdapter() { @Override public Rectangle getBounds(Legend legend, Rectangle rectangle) { return new Rectangle(rectangle.x, rectangle.y, rectangle.width - 6, rectangle.height); }; }); Though, I ...
by znakeeye
Sat Feb 23, 2013 4:46 pm
Forum: Java
Topic: Right-aligned legend has no margin
Replies: 6
Views: 13507

Right-aligned legend has no margin

My right-aligned legend is always 0 pixels from the right side of my chart. I would like to add a couple of pixels spacing, but can't figure out how. Looking through the source code, it seems no such feature is available.

Any ideas?
by znakeeye
Sat Feb 23, 2013 3:38 pm
Forum: Java
Topic: Axis with arrow?
Replies: 3
Views: 9237

Axis with arrow?

Is it possible to add an arrow at the end of the left axis?
by znakeeye
Sat Feb 23, 2013 3:32 pm
Forum: Java
Topic: Circular.adjustCircleMarks buggy for small screens
Replies: 7
Views: 17029

Re: Circular.adjustCircleMarks buggy for small screens

I have very limited time on this project, so unfortunately a sample project has to wait. However, this fixed the issue: pie.getMarks().setVisible(true); pie.getMarks().getPen().setVisible(false); pie.getMarks().getCallout().setLength(0); pie.getMarks().setStyle(MarksStyle.SERIESTITLE); Note the call...
by znakeeye
Mon Jan 28, 2013 10:14 pm
Forum: Java
Topic: Circular.adjustCircleMarks buggy for small screens
Replies: 7
Views: 17029

Circular.adjustCircleMarks buggy for small screens

pie.getMarks().setVisible(true); pie.getMarks().setStyle(MarksStyle.SERIESTITLE); Consider your code in the adjustCircleMarks() function: ... rCircleRect.y += tmpH; rCircleRect.height -= 2 * tmpH; ... rCircleRect.x += tmpW; rCircleRect.width -= 2 * tmpW; On some screens (using Samsung GT-S55701 here...