Jump to content
Software FX Community

Unknown defines


User (Legacy)

Recommended Posts

If you are using the XOM object, you don't need to use ChartFX.H, this file

is used only if you are using the DLL'd flat API (compatibility with older

versions).

When you do #import, all enumerations are going to be imported along with

all the interfaces, classes, properties and methods.

In particular, if you check the type of Stacked, you will see that it is of

type CfxStacked with is an enumeration declared as follows:

enum CfxStacked

{

CHART_NOSTACKED = 0,

CHART_STACKED = 1,

CHART_STACKED100 = 2

};

So you basically need to use the constants as they appear in the docs.

--

FP

Software FX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...