User (Legacy) Posted May 4, 2005 Report Share Posted May 4, 2005 I can see the table below the ChartFX Graph by setting the property "Data Editor" of ChartFX Control. My ChartFX Graph has three series (each has a one data point). So table has tree series. but, I want the only one series I chosed to be showed on the ChartFX Graph, not changing the number of series showed in the table. The table below the ChartFX Graph should show three series. How I can do? Thanks in advance. My Development Environment is... a.. ChartFX C/S version 5.1 b.. Visual Studio C++ 6.0 c.. Window XP Home Edition Quote Link to comment Share on other sites More sharing options...
Software FX Posted May 7, 2005 Report Share Posted May 7, 2005 The data editor is not a separate control but simply another view of the same data, you may want to consider using a Grid control instead. There is a hack that will allow you to display series in the Data Editor without displaying them in the chart and that is making the series Invisible by manipulating its attributes, for example you can do: Chart.Series(0).Gallery = SCATTER Chart.Series(0).MarkerShape = MK_NONE -- FP Software FX Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.