Replies: 4 comments 2 replies
-
Hello, |
Beta Was this translation helpful? Give feedback.
0 replies
-
Same issue here as well. |
Beta Was this translation helpful? Give feedback.
0 replies
-
What is the value range in your data (x axis)? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
For some reason when I enable tooltips it displays every value in the series and not the value I am hovering over. I have a few thousand points in my series, but even when I zoom down to a level where the data should be granular I still see all the values in my series in the tooltip.
this is my LineSeries
chan0Series = new LineSeries
{
Name = "Channel 0",
Values = this._observableValuesChan0,
Fill = null,
GeometryFill = null,
GeometryStroke = null,
Stroke = new SolidColorPaint(chan0Color) { StrokeThickness = 2 },
ScalesYAt = 0,
LineSmoothness = 0,
TooltipLabelFormatter = (chartPoint) => $"{chartPoint.PrimaryValue}"
};
and the xaml
<lvc:CartesianChart x:Name="lvcHistChart" ZoomMode="X" ZoomingSpeed=".5"
Series="{Binding Series}" XAxes="{Binding XAxes}" YAxes="{Binding YAxes}" TooltipPosition="Top"
LegendPosition="Right">
</lvc:CartesianChart>
Beta Was this translation helpful? Give feedback.
All reactions