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
110
Hide datapoint labels
posted
is there any possibility to hide the datapoint labels without hiding the datapoint? thx
Parents
  • 375
    posted

    When you say "datapoint labels", are you talking about at a marker?  If so, you can do something like this when setting up your datapoint.

     Datapoint dp = new DataPoint();

    // setup the data

    dp.Marker = new Marker { Type = MarkerType.Circle, Stroke = Brushes.White, Foreground = Brushes.Transparent };

    You can change the marker type and the stroke if you like.  Setting the Foreground to transparent basically makes the text invisible.

     I hope this is what you are referring to and it helps out.

Reply Children