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
170
"Permanent Tooltip" on Marker in XamWebChart
posted

Hello,

I have a question about  the Tooltip. Is it possible to add on the Marker a "Tooltip" that displayed permanently on the screen. I mean, you do not need to go over the "Marker" for displaying the Tooltip.

Thank you for your quick answer.

 

  

Parents
  • 26458
    Suggested Answer
    Offline posted

    Markers are capable of displaying a text label. Let's say you have a series with a few points. If you want to set a marker with a label on one of them you can do something like this:

    Marker marker = new Marker();
    marker.Type = MarkerType.Circle;
    marker.Format = "my marker";
    marker.LabelDistance = 1;
    series.DataPoints[1].Marker = marker;

Reply Children