Jump to content
Software FX Community

I need my X axis to range from -6.43 to 6.57...


User (Legacy)

Recommended Posts

And I need about 150 points in between.  The control seems to look at a

"point" as an integer. I want my "points" to be decimal, maybe .05 or so.

I need to go from say -6.43 to 6.57 with 150 places in between. Can I do

this?

Or better yet, can I provide the control with all the X values that I'll

need, in array form or similar?

Link to comment
Share on other sites

And I need about 150 points in between.  The control seems to look at a

"point" as an integer. I want my "points" to be decimal, maybe .05 or so.

I need to go from say -6.43 to 6.57 with 150 places in between. Can I do

this?

Or better yet, can I provide the control with all the X values that I'll

need, in array form or similar?

Link to comment
Share on other sites

ChartFX.Lite does not support "real" X axis (where each point has its own X

axis value like 6.57). This is supported in the full version which should be

in beta shortly.

--

Regards

JC

Software FX Support

"0to60" <holeshot60.nospam@yahoo.com> wrote in message

news:aSOefKzrBHA.2636@webserver1.softwarefx.com...

> And I need about 150 points in between. The control seems to look at a

> "point" as an integer. I want my "points" to be decimal, maybe .05 or so.

> I need to go from say -6.43 to 6.57 with 150 places in between. Can I do

> this?

>

> Or better yet, can I provide the control with all the X values that I'll

> need, in array form or similar?

>

>

Link to comment
Share on other sites

ChartFX.Lite does not support "real" X axis (where each point has its own X

axis value like 6.57). This is supported in the full version which should be

in beta shortly.

--

Regards

JC

Software FX Support

"0to60" <holeshot60.nospam@yahoo.com> wrote in message

news:aSOefKzrBHA.2636@webserver1.softwarefx.com...

> And I need about 150 points in between. The control seems to look at a

> "point" as an integer. I want my "points" to be decimal, maybe .05 or so.

> I need to go from say -6.43 to 6.57 with 150 places in between. Can I do

> this?

>

> Or better yet, can I provide the control with all the X values that I'll

> need, in array form or similar?

>

>

Link to comment
Share on other sites

"Software FX Support" <support@softwarefx.com> wrote in message

news:8APnZr$rBHA.1412@webserver1.softwarefx.com...

> ChartFX.Lite does not support "real" X axis (where each point has its own

X

> axis value like 6.57). This is supported in the full version which should

be

> in beta shortly.

Ok, I've got the beta version. How do you do this? I can't find it

ANYWHERE in the tutorial. I can make the Y axis look however I want, but

when I try to set the properties (min, max, step) of the X axis, it seems to

ignore me. How do I do it?

Link to comment
Share on other sites

"Software FX Support" <support@softwarefx.com> wrote in message

news:8APnZr$rBHA.1412@webserver1.softwarefx.com...

> ChartFX.Lite does not support "real" X axis (where each point has its own

X

> axis value like 6.57). This is supported in the full version which should

be

> in beta shortly.

Ok, I've got the beta version. How do you do this? I can't find it

ANYWHERE in the tutorial. I can make the Y axis look however I want, but

when I try to set the properties (min, max, step) of the X axis, it seems to

ignore me. How do I do it?

Link to comment
Share on other sites

a) Make sure you are setting the gallery to something that supports X

values. Lines, Scatter, Curve, Area and bubble will support it.

B) To set the data for your X axis points

chart1.OpenData(COD.XValues,numberofseries,numberofpoints);

chart1.XValue[0,0] = 6.5;

...

chart1.CloseData(COD.XValues);

If this does not help please post the code you are trying. Also please post

future ChartFX for .NET questions to the chartfx.net.beta newsgroup.

--

Regards

JC

Software FX Support

"0to60" <holeshot60.nospam@yahoo.com> wrote in message

news:#n3yHPOsBHA.1412@webserver1.softwarefx.com...

>

> "Software FX Support" <support@softwarefx.com> wrote in message

> news:8APnZr$rBHA.1412@webserver1.softwarefx.com...

> > ChartFX.Lite does not support "real" X axis (where each point has its

own

> X

> > axis value like 6.57). This is supported in the full version which

should

> be

> > in beta shortly.

>

> Ok, I've got the beta version. How do you do this? I can't find it

> ANYWHERE in the tutorial. I can make the Y axis look however I want, but

> when I try to set the properties (min, max, step) of the X axis, it seems

to

> ignore me. How do I do it?

>

>

Link to comment
Share on other sites

a) Make sure you are setting the gallery to something that supports X

values. Lines, Scatter, Curve, Area and bubble will support it.

B) To set the data for your X axis points

chart1.OpenData(COD.XValues,numberofseries,numberofpoints);

chart1.XValue[0,0] = 6.5;

...

chart1.CloseData(COD.XValues);

If this does not help please post the code you are trying. Also please post

future ChartFX for .NET questions to the chartfx.net.beta newsgroup.

--

Regards

JC

Software FX Support

"0to60" <holeshot60.nospam@yahoo.com> wrote in message

news:#n3yHPOsBHA.1412@webserver1.softwarefx.com...

>

> "Software FX Support" <support@softwarefx.com> wrote in message

> news:8APnZr$rBHA.1412@webserver1.softwarefx.com...

> > ChartFX.Lite does not support "real" X axis (where each point has its

own

> X

> > axis value like 6.57). This is supported in the full version which

should

> be

> > in beta shortly.

>

> Ok, I've got the beta version. How do you do this? I can't find it

> ANYWHERE in the tutorial. I can make the Y axis look however I want, but

> when I try to set the properties (min, max, step) of the X axis, it seems

to

> ignore me. How do I do it?

>

>

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...