BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Alexander,
We would like to let you know that Minimum and Maximum properties are nullable in NumericalAxis, and currently there is a bug in Xamarin to set the nullable properties in XAML, please refer the following Xamarin bugzilla defect report regarding this. Until this issue is fixed please make use of the workaround. We can set those properties as shown in the below code snippet.
[XAML]
<chart:NumericalAxis.Maximum> <x:Double>50</x:Double> </chart:NumericalAxis.Maximum>
<chart:NumericalAxis.Minimum> <x:Double>-50</x:Double> </chart:NumericalAxis.Minimum> |