Page 1 of 1

Highlight Y Axis Label when Mouse Over Plot Line

Posted: Fri Apr 07, 2017 1:17 pm
by plotter
Hello Everybody (My First Post),

I have 15 line plots in 4 view segments and need to identify the Y axis when hovering over the plot line with mouse.
Highlighting the Y Axis Label when the respective plot is highlighted would be great.
Also, highlighting the plot line when mouseover the y Axis label, or better yet the Y Axis scale would be HUGE benefit for me.
(Winforms)

This functionality would be VERY useful.

Thanks

H

Re: Highlight Y Axis Label when Mouse Over Plot Line

Posted: Fri Apr 07, 2017 6:46 pm
by ArctionPasi
Hi,
I have 15 line plots in 4 view segments and need to identify the Y axis when hovering over the plot line with mouse.
Highlighting the Y Axis Label when the respective plot is highlighted would be great.
You can do that by using series.MouseOverOn event handler. You can highlight the Y axis title of this series pretty much like the following:
chart.ViewXY.YAxes[senderSeries.AssignYAxisIndex].Title.Color = highlightColor.

And you can use MouseOverOff to deactivate the highlight.

Also, highlighting the plot line when mouseover the y Axis label, or better yet the Y Axis scale would be HUGE benefit for me.
(Winforms)
You can use Yaxis.Title.MouseOverOn and highlight the preferred series there. Also you can use YAxis.MouseOverOn event.

I hope this helps ;)

Re: Highlight Y Axis Label when Mouse Over Plot Line

Posted: Sat Apr 08, 2017 1:06 am
by plotter
Awesome!!!
Thank You!