Jump to content
Software FX Community

Tool Tip in pie chart with exploding


Z95

Recommended Posts

Hi,

 

I'm trying to use the tool tip on a 3d exploding pie chart but I'm facing some offset issue.

The tool tip display values of a diffrenet slice.

 

If I'm moving it a little bit, it do display the right value for the relevant slice..

Is anyone familiar with this issue?

Some suggestion how it can be fixed?

 

Thanks

Link to comment
Share on other sites

  • 2 weeks later...

If you would like help with Chart FX 6.2, please post to the right forum. It is not clear whether you are using COM or .NET, win or web. 

 

Assuming you are using .net 6.2, windows forms, I can tell you it seems to be working for me. Version 6.2.3188. Here is the code I tried.

 

            int numbOfSeries = 1;

            int numbOfPoints = 5;

            Random rnd = new Random();

            chart1.OpenData(COD.Values, numbOfSeries, numbOfPoints);

            for (int i = 0; i < numbOfSeries; i++) {

                for (int j = 0; j < numbOfPoints; j++) {

                    chart1.Value[i, j] = rnd.Next(100);

                }

            }

            chart1.CloseData(COD.Values);

            chart1.Gallery = Gallery.Pie;

            chart1.View3D = true;

            Pie p = (Pie)chart1.GalleryObj;

            p.ExplodingMode = ExplodingMode.All; 

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...