Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
199 views

Import chartfx to Delphi XE2

A number of delphi applications that I work with use an activex chartfx control. I realize that the company softwarefx stopped supporting delphi a while ago but we are transitioning to 64 bit builds ...
2
votes
0answers
343 views

Is ChartFX 6.2 compatible with Vista and Windows 7

Does anyone have any success with WinForms ChartFX 6.2 on Vista or Windows? I'm after a sanity check that it's not just our code. If it's a known issue I can say that upgrading is the only solution. ...
1
vote
3answers
2k views

Access violation when accessing a COM object from .Net

I am sorry if the post is too long, but I would be happy if someone would at least point read the bolded titles, and point me in the right direction. I am having this problem for couple of days, but ...
1
vote
1answer
571 views

ChatFx Lite LicenseException on build server

I downloaded ChartFx Lite and am using it successfully in my windows forms application on my development machine. I have added the ChartFX.Lite.dll assembly to my source repository and am trying to ...
0
votes
0answers
33 views

Clicking the print button in chartFx doesn't bring the print dialog

I have ChartFX 7.0 for win forms and the toolbar is set to Visible, but when I click the "Print..." button nothing happens. Weird thing is that in some environments I'm able to reproduce this and in ...
0
votes
1answer
114 views

LINQ reformat to Table in Memory

I am working on an ASP.net page that also users ChartFX. I need to pull a row from a database table and then flip it so that all of the labels for the row are in a column and all of the data from the ...
0
votes
3answers
2k views

java.lang.Error: “Not enough storage is available to process this command” when generating images

I am running a web application on BEA Weblogic 9.2. Until recently, we were using JDK 1.5.0_04, with JAI 1.1.2_01 and Image IO 1.1. In some circumstances (we never figured out exactly why), when we ...
0
votes
1answer
90 views

Chartfx new chart object not initialized?

When I create a new chart object via: ChartFX.WebForms.Chart theChart = new ChartFX.WebForms.Chart(); When I took a look immediately the row after creation via breakpoint in Visual Studio 2005 I ...
0
votes
4answers
1k views

Couldn't get Design Time license for 'SoftwareFX.ChartFX.Chart' error in C# solution

I'm trying to build a C# solution in Visual Studio 2008 written by other programmer. Visual Studio throws the following error: Exception occurred creating type 'SoftwareFX.ChartFX.Chart, ...
0
votes
1answer
294 views

Export ChartFX7 to SVG in Java

Can anybody give an example for exporting a ChartFX7 chart to SVG? I've tried: ByteArrayOutputStream baos = new ByteArrayOutputStream(); m_chart.setOutputWriter(new SvgWriter()); ...