When the RadLinearSparline is in AutoRange, is there a way to get the actual Y Axis Min Range and Max Range values? These values would then be displayed in a separate control. I have bound the MinYValue and MaxYValue to properties and am able to get the values when AutoRange = false but when AutoRange = true the MinYValue and MaxY are always 0.
<
telerik:RadLinearSparkline
Grid.Row
=
"0"
Grid.RowSpan
=
"3"
Grid.Column
=
"1"
ItemsSource
=
"{Binding AsyncData, Converter={StaticResource collectionConverter}}"
YValuePath
=
"YVal"
LineStroke
=
"{Binding FontColor}"
ShowNormalRange
=
"True"
AutoRange
=
"{Binding AutoRange}"
MinYValue
=
"{Binding MinYvalue}"
MaxYValue
=
"{Binding MaxYvalue}"
NormalRangeTop
=
"{Binding Maximum}"
NormalRangeBottom
=
"{Binding Minimum}"
EmptyPointBehavior
=
"DropPoint"
>