Home             Download           Contact           Purchase
Home Help Search Login


1  General / General Information / Re: WordArt?
 on: 06/11/09 at 04:24:51 
Started by LisaW | Post by winj
Yes.It does not support wordart.
Reply Quote Notify of replies  

2  General / General Information / WordArt?
 on: 06/10/09 at 17:50:29 
Started by LisaW | Post by LisaW
I have a wordart object on a sheet that I open up with jxcell - but then after making modifications to the excel workbook, the word art is gone.  Is it not supported?
Reply Quote Notify of replies  

3  General / General Information / Re: Chart Formatting Questions
 on: 05/21/09 at 07:55:29 
Started by LisaW | Post by winj
Here is the codes to set your x-axis text to 45 degrees:
 
Code:
		
ChartFormat cf = chart.getAxisFormat(GRChart.eXAxis, 0);
cf.setOrientation((short)45);
chart.setAxisFormat(GRChart.eXAxis, 0, cf);
 

Reply Quote Notify of replies  

4  General / General Information / Chart Formatting Questions
 on: 05/19/09 at 15:13:21 
Started by LisaW | Post by LisaW
I want to set the orientation of the text on my x-axis to 45 degrees - its not intuitive to me how to do this from the javadocs.
 
Additionally, is there a way to set where the x-axis crosses the y-axis?
 
Thanks!
Lisa
Reply Quote Notify of replies  

5  General / General Information / Re: Merge group?
 on: 04/21/09 at 07:14:12 
Started by Kebin - Ex Member | Post by winj
You can call setSelection() with specified cell range("A1"),and then call getSelection() get the whole selected merged range("A1:A2").
Reply Quote Notify of replies  

6  General / General Information / Re: Merge group?
 on: 04/14/09 at 19:35:58 
Started by Kebin - Ex Member | Post by Kebin - Ex Member
I just want to know the A1 A2 is merged and B1 B2 is other,but the method isCellMerge return true on the four cell.
So that is same as A1 A2 B1 B2 is merged.
Reply Quote Notify of replies  

7  General / General Information / Re: Merge group?
 on: 04/09/09 at 18:35:40 
Started by Kebin - Ex Member | Post by winj
what's the "merge group" mean?
Reply Quote Notify of replies  

8  General / General Information / Merge group?
 on: 04/08/09 at 22:45:34 
Started by Kebin - Ex Member | Post by Kebin - Ex Member
The method isCellMerge(int row,int col) just return true when the cell is a merge cell,  
so the cell A1 A2 B1 B2 (as the image) and D1 D2 E1 E2 get the same return true value.
How can I know the cell is in a merge "group"?
Reply Quote Notify of replies  

9  General / General Information / Re: Print to PDF
 on: 03/30/09 at 06:29:38 
Started by fumaste | Post by fumaste
Thanks for the answer!
Another question:
Jxcell create me a pdf file very big, there are some compression parameters?
PDFCreator create a smaller file from the same xls file!
Reply Quote Notify of replies  

10  General / General Information / Re: Print to PDF
 on: 03/28/09 at 06:10:27 
Started by fumaste | Post by winj
Jxcell only support export the current selected sheet to pdf.
Reply Quote Notify of replies