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
1850
Histogram Line Highlight
posted

Is there a way to turn off the highlight tool tip for the Histogram line only? I still want the tool tips and highlighting for the columns.

-Ken

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    Hello,

     

    In order to remove labels and HitTest from line part of histogram chart you should handle OnDataItemOver event of UltraCahrt and add there the following code snippet:

     

         if (e.Primitive is DataPoint)

                {

                    ((DataPoint)e.Primitive).Caps = PCaps.None;

                }

     

    Let me know if you have any further questions.

Children