I have this custom control:
<code><dxga:RadialGauge WidthRequest="350" HeightRequest="220">
<dxga:RadialScale StartAngle="180"
StartValue="0" EndValue="{Binding ScaleSettings.ScaleEndValue}"
ShowTickmarkLabels="True"
MajorTickmarkCount="5"
MinorTickmarkCount="4"
SweepAngle="180"
Fill="Transparent"
TickmarkLabelPosition="Inside">
<dxga:RangeIndicator StartValue="0" EndValue="{Binding ScaleSettings.ScaleFirstStep}" StrokeCap="Square" StartThickness="20" Fill="#EEEEEE" />
[ ... ]
</dxga:RadialScale>
</dxga:RadialGauge>
</code>
<code><dxga:RadialGauge WidthRequest="350" HeightRequest="220">
<dxga:RadialScale StartAngle="180"
StartValue="0" EndValue="{Binding ScaleSettings.ScaleEndValue}"
ShowTickmarkLabels="True"
MajorTickmarkCount="5"
MinorTickmarkCount="4"
SweepAngle="180"
Fill="Transparent"
TickmarkLabelPosition="Inside">
<dxga:RangeIndicator StartValue="0" EndValue="{Binding ScaleSettings.ScaleFirstStep}" StrokeCap="Square" StartThickness="20" Fill="#EEEEEE" />
[ ... ]
</dxga:RadialScale>
</dxga:RadialGauge>
</code>
<dxga:RadialGauge WidthRequest="350" HeightRequest="220">
<dxga:RadialScale StartAngle="180"
StartValue="0" EndValue="{Binding ScaleSettings.ScaleEndValue}"
ShowTickmarkLabels="True"
MajorTickmarkCount="5"
MinorTickmarkCount="4"
SweepAngle="180"
Fill="Transparent"
TickmarkLabelPosition="Inside">
<dxga:RangeIndicator StartValue="0" EndValue="{Binding ScaleSettings.ScaleFirstStep}" StrokeCap="Square" StartThickness="20" Fill="#EEEEEE" />
[ ... ]
</dxga:RadialScale>
</dxga:RadialGauge>
At the [ ... ]
position I would like to iterate through an ObservableCollection using a sub-control:
<dxga:MarkerIndicator Value="{Binding .}"/>
Is that in any way possible?