Jump to content
Software FX Community

combine floating column, area, scatter charts


thealere

Recommended Posts

 Hi,

Chart FX does have the capability to mix serveral gallery types into one chart.

Here is a page from the online resource center that shows some combination: http://support.softwarefx.com/OnlineDoc/CfxJava70//guide/combination.htm

 

Then, if you are using Java Desktop Pure Swing  application, you should get the Chart FX for Java Desktop or in case you are developing web pages you should get Chart FX 7 for Java Server. The Developer Studio 7 Suite contains all Java and .Net products in the same package.

So, if you want to try our products, you can download them (30 Day Full Product Trial) at: http://www.softwarefx.com/SfxTrial/Trial_downloads.aspx

If you have specific pricing questions, please contact our sales department at [sales at softwarefx.com]. They will be more than glad to help you for any pricing and licensing question.

 

If you need further assistance, please let me know.

 

Link to comment
Share on other sites

Hi thealere

 

Yes, Chart FX support the floating bars as the ones in the image. You need to use following code:

 

chart1.openData(COD.VALUES, series, points);

chart1.openData(COD.INI_VALUES, series, points);

 

// Add as many as you want

chart1.getIniValue().setItem(series, point, value);

chart1.getValue().setItem(series, point, value);

 

chart1.closeData(COD.INI_VALUES);

chart1.closeData(COD.VALUES);

 

-- Pipon

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...