Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
How to read legend lables once chart is generated?
posted

I have a pie chart with bottom 5% going to "others" category.

Clicking on any of the slices drills down to a detailed chart using the value clicked as a parameter.

But when a user clicks on the "others" slice, I need to know the other legend values so I can exclude them.

 Using c# but any tip would be appreciated.

 

Thank you,

Joe

Parents
No Data
Reply
  • 17605
    posted

    The UltraChart doesn't have this functionality, but you can find the "others" points with:

    PieLayer pieLayer = this.ultraChart1.Layer["Default"] as PieLayer;

    ArrayList points = pieLayer.PointsInOthersWedge;

Children
No Data