Search found 211 matches

by tom
Mon Sep 10, 2007 9:51 pm
Forum: Java
Topic: TChart not working in JBuilder7
Replies: 6
Views: 16708

Re: TChart not working in JBuilder7

JBuilder does not recognize eg 'Series' or 'bar' as a class (message: "cannot resolve to a type...."). Have you organised your imports after pasting the code? Using import com.steema.teechart.TChart; won't be enough. After pasting the code, you should add the following as well: import com.steema.te...
by tom
Sun Sep 09, 2007 11:49 pm
Forum: Java
Topic: JasperReports + TeeChart
Replies: 3
Views: 10620

Hi, I'm sorry, but my Spanish is not that good. If I'm correct, you are looking for a way to get a 'picture' of the painted chart. You can get this by using the ImageExport class. You can access this class from: myChart.getExport().getImage() For instance: to get a java.awt.Image myChart.getExport()...
by tom
Sun Sep 09, 2007 10:30 pm
Forum: Java
Topic: Trouble loading sampleData.xml into Applet
Replies: 4
Views: 11217

Hi, The example is somewhat confusing. It mimics the sample of the other teeChart versions, but it uses the native Java XML and not the specification of other teeChart versions (as the template example). The native Java XML uses XMLEncoder and XMLDecoder. Unfortunately, we noticed some issues in the...
by tom
Sun Sep 09, 2007 9:22 pm
Forum: Java
Topic: Setting chart colors using script
Replies: 3
Views: 9594

Sorry, I think we misunderstand your questions, how would you like to use our component with JavaScript? Can you provide us an example of an html page which shows us the functionality you need? In an applet you would use something like this: import com.steema.teechart.TChart; import java.awt.*; impo...
by tom
Sun Sep 09, 2007 6:13 pm
Forum: Java
Topic: Setting style of marks to Values
Replies: 4
Views: 11348

Please provide us with more information (eg sample code) in how you are trying to use the component with JavaScript
by tom
Sun Sep 09, 2007 6:12 pm
Forum: Java
Topic: Is everything in the editing panel able to be scripted?
Replies: 5
Views: 13070

I'm not sure if I can follow you here. Are you trying to use the component with JavaScript or as an applet? In case of JavaScript, I'm not sure how you mean to use the component. If so, please provide me with more information. We haven't tested the component in a JavaScript environment, so you proba...
by tom
Sun Sep 09, 2007 6:01 pm
Forum: Java
Topic: TeeChart Installation for JBuilder 2007
Replies: 2
Views: 8516

See also http://www.teechart.net/support/viewtopic.php?t=6556 JBuilder2007 uses Eclipse platform, so it is different from previous versions of JBuilder. If you add the TeeChart.Swing.jar as a library, you can use the teechart widgets inside the Visual Editor, using the Choose Bean option. To have th...
by tom
Sun Sep 09, 2007 2:40 pm
Forum: Java
Topic: TChart not working in JBuilder7
Replies: 6
Views: 16708

Hi, Please follow the following steps to use JTeeChart in your JBuilder2007 projects. A. Create Library ----------------- In Window / Preferences: Select Java > Build Path > User Libraries to open the library manager dialog Click 'New' > Provide a name (eg. 'JTeeChart') Click 'OK' Select the newly a...
by tom
Thu Sep 06, 2007 12:29 am
Forum: Java
Topic: New BUG - ChartEditor - Function Export
Replies: 2
Views: 7628

Hi,

To solve this issue, go to the resource bundle of your language: com.steema.teechart.languages.

the default resource is languages.properties

add the following to it:

COMPRESSION_LEVEL=Compression Level
GrayScale=Grayscale

You can change this in your preferred language as well.

Regards,
Tom.
by tom
Wed Sep 05, 2007 11:53 pm
Forum: Java
Topic: Trouble loading sampleData.xml into Applet
Replies: 4
Views: 11217

I have tried the example in the TChart.Features.jar and can not get either an xml file from a url or from my local harddisk to import. Do you mean that even in the example you can't load the file from your local disk? ie. that the example application doesn't work? java.lang.Exception: java.security...
by tom
Wed Sep 05, 2007 11:03 pm
Forum: Java
Topic: TChart not working in JBuilder7
Replies: 6
Views: 16708

It looks like JBuilder isn't able to find the teeChart jar library: * Have you added this library to JBuilder? * Did you include this library to your project? If JBuilder doesn't know about the library (or it isn't told that the project needs to use the library, then it isn't able to understand com....
by tom
Wed Sep 05, 2007 10:57 pm
Forum: Java
Topic: TeeChart Installation for JBuilder 2007
Replies: 2
Views: 8516

Could you tell us exactly which steps you followed trying to install teeChart for Java?

Thanks,
Tom.
by tom
Sun Aug 26, 2007 8:25 pm
Forum: VCL
Topic: origin of tree has moved :(
Replies: 1
Views: 8220

TeeTree cuts -by design- white space at the top and left of the page. Setting the PAGEBOUNDS define might solve your issue. (see {$I PAGEBOUNDS} at top of teetree.pas

Regards,
tom.
by tom
Sun Aug 26, 2007 8:23 pm
Forum: VCL
Topic: Support for huge organiastional charts or huge trees?
Replies: 2
Views: 10314

Hi, Have you looked at the pages functionality? But this functionality might not solve your issues, since you are looking for a very long canvas. I'm wondering do you really need such a long canvas? Perhaps another solution be more useful? Ie browsing through 200 pages might be something which some ...
by tom
Sun Aug 05, 2007 10:26 pm
Forum: VCL
Topic: How do I add a node as first member of children, not last?
Replies: 2
Views: 10354

the position of a node is determined by its brotherindex. You can change this value to move a node, eg : BrotherIndex := 0 will move the node to the top.

Regards,
tom