Hi,
I'm setting the TickFrequency to the same number as the Maximum to achieve no only a tick on start and end.
However this is causing issues on iOS.
<range:SfRangeSlider
LabelFormat="{}{0:N0} %"
Orientation="Horizontal"
WidthRequest="135"
HeightRequest="36"
Value="{Binding Multiplier}"
Margin="0,4"
Minimum="50" Maximum="200"
StepFrequency="1"
TickFrequency="200"
ShowValueLabel="True"
ValueChangeMode="Default"
>
<range:SfRangeSlider.Behaviors>
<behaviors:EventToCommandBehavior
EventName="ThumbTouchUp"
Command="{Binding SetFlowMultiplierCommand}"
/>
</range:SfRangeSlider.Behaviors>
</range:SfRangeSlider>
Once I set the TickFrequency slower than the Maximum, the error below disappears.
2021-01-16 10:06:54.119247+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
2021-01-16 10:06:54.119528+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] If you want to see the backtrace, please set CG_NUMERICS_SHOW_BACKTRACE environmental variable.
2021-01-16 10:06:54.119642+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] CGContextAddLineToPoint: no current point.
2021-01-16 10:06:54.119762+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
2021-01-16 10:06:54.119889+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] If you want to see the backtrace, please set CG_NUMERICS_SHOW_BACKTRACE environmental variable.
2021-01-16 10:06:54.120003+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] CGContextAddLineToPoint: no current point.
2021-01-16 10:06:54.153740+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
2021-01-16 10:06:54.153933+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] If you want to see the backtrace, please set CG_NUMERICS_SHOW_BACKTRACE environmental variable.
2021-01-16 10:06:54.154052+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] CGContextAddLineToPoint: no current point.
2021-01-16 10:06:54.154174+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] Error: this application, or a library it uses, has passed an invalid numeric value (NaN, or not-a-number) to CoreGraphics API and this value is being ignored. Please fix this problem.
2021-01-16 10:06:54.154261+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] If you want to see the backtrace, please set CG_NUMERICS_SHOW_BACKTRACE environmental variable.
2021-01-16 10:06:54.154369+0100 RemoteControlRepetierServer.iOS[47948:487747] [Unknown process name] CGContextAddLineToPoint: no current point.
I also tried to set TickFrequency to 0, this solves the issue as well, however the first and last tick is not shown.
Thanks for looking into this.