PointLineSeries3D pointer over style

A forum dedicated to WPF version of LightningChart Ultimate.

Moderator: Queue Moderators

Post Reply
grey
Posts: 6
Joined: Mon May 22, 2023 9:03 am

PointLineSeries3D pointer over style

Post by grey » Thu May 25, 2023 8:39 am

in View3D PointLineSeries3D,i add some SeriesPointCompactColored3D points, i set the AllowUserInteraction = true, the whole PointLineSeries3D body
will change(highlight) when pointer is over,if i can remove the pointer over style? or modify it?

the PointLineSeries3D style chang from image 1 to 2 when pointer is over it
image1.png
image1.png (679.74 KiB) Viewed 8078 times
image2.png
image2.png (636.67 KiB) Viewed 8078 times

ArctionKestutis
Posts: 555
Joined: Mon Mar 14, 2016 9:22 am

Re: PointLineSeries3D pointer over style

Post by ArctionKestutis » Thu May 25, 2023 11:20 am

If you want interaction with series, but don't want highlighting, then use series.Highlight property.

Code: Select all

          series.Highlight = Highlight.None;

Post Reply