.OnPointMeasured deprecated #1781
Answered
by
MINT-KISS
Dadou55555
asked this question in
Q&A
-
Hi, can you please explain how do i need to translate the old .OnPointMeasured to the LiveChartsCore.Kernel.Events. here's my code:
Thank you. |
Beta Was this translation helpful? Give feedback.
Answered by
MINT-KISS
Jan 23, 2025
Replies: 1 comment 3 replies
-
var lineSeries = new LineSeries<double?> EventExtensions.OnPointMeasured(lineSeries, point => Series.Add(lineSeries); |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
Dadou55555
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
var lineSeries = new LineSeries<double?>
{
...
};
EventExtensions.OnPointMeasured(lineSeries, point =>
{
...
});
Series.Add(lineSeries);