User (Legacy) Posted February 6, 2002 Report Share Posted February 6, 2002 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 More sharing options...
User (Legacy) Posted February 6, 2002 Author Report Share Posted February 6, 2002 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 More sharing options...
Software FX Posted February 7, 2002 Report Share Posted February 7, 2002 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 More sharing options...
Software FX Posted February 7, 2002 Report Share Posted February 7, 2002 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 More sharing options...
User (Legacy) Posted February 8, 2002 Author Report Share Posted February 8, 2002 "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 More sharing options...
User (Legacy) Posted February 8, 2002 Author Report Share Posted February 8, 2002 "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 More sharing options...
Software FX Posted February 8, 2002 Report Share Posted February 8, 2002 a) Make sure you are setting the gallery to something that supports X values. Lines, Scatter, Curve, Area and bubble will support it. 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 More sharing options...
Software FX Posted February 8, 2002 Report Share Posted February 8, 2002 a) Make sure you are setting the gallery to something that supports X values. Lines, Scatter, Curve, Area and bubble will support it. 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.