Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Caption is not centered (Read 3524 times)
Dunedan
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 14
Joined: Apr 14th, 2009
Caption is not centered
Mar 31st, 2014 at 3:51pm
Print Post  
Hi,

When creating a TableNode with a JDiagram 4.0.5 (beta), I notice that the caption of the TableNode is not correctly centered (vertically). I didn't have the problem with JDiagram 3.
I simply do:

TableNode node = diagram.getFactory().createTableNode(new Rectangle(30, 30), 1, 1);
node.setCaption("Node caption");
int curRow = node.addRow();
Cell cell = node.getCell(0, curRow);
cell.setText("Image");
curRow = node.addRow();
cell = node.getCell(0, curRow);
cell.setText("text");
node.resizeToFitText(false);
diagram.add(node);

Did I missed something ?
Thanks,
Fabrice.
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Caption is not centered
Reply #1 - Mar 31st, 2014 at 6:36pm
Print Post  
Hi,

That's a bug in resizeToFitText setting a very small caption-bar height, and you are actually seeing the caption text overflowing into the empty row below. This version should fix it:
https://mindfusion.eu/_beta/JDiagram_fitText.zip

I hope that helps,
Stoyan
  
Back to top
 
IP Logged
 
Dunedan
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 14
Joined: Apr 14th, 2009
Re: Caption is not centered
Reply #2 - Apr 1st, 2014 at 8:45am
Print Post  
Yes, exactly.
Congratulations and thanks for this quick correction.
  
Back to top
 
IP Logged
 
Dunedan
YaBB Newbies
*
Offline


I love YaBB 1G - SP1!

Posts: 14
Joined: Apr 14th, 2009
Re: Caption is not centered
Reply #3 - Apr 1st, 2014 at 8:56am
Print Post  
Just one more question:
when will it be delivered in an official release ?
  
Back to top
 
IP Logged
 
Stoyo
God Member
*****
Offline


MindFusion support

Posts: 13230
Joined: Jul 20th, 2005
Re: Caption is not centered
Reply #4 - Apr 1st, 2014 at 10:15am
Print Post  
We are releasing it next week.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint