
Hi,
Rezising the circular gauge below 10 width or height fires Argument Exception. Not sure why this is caused. A similar operation on LinearGauge works fine.
Please drop below xaml on WPF app Main Window and run. Minimize the circular gauge size until gauge vanishes. Exception fired.
Let me know if more info is required. gauge and shared dll has to be referenced
regards,
Rithesh
<Grid>
<shared:ResizableContentControl MinHeight="0" MinWidth="0" Height="220" Width="220">
<ActiproGauge:CircularGauge
IsManipulationEnabled="True"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Background="Black"
BackgroundRadiusRatio="0.92"
BackgroundType="CircularSideGradient"
GlassType="None"
RimBrush="Black"
RimType="CircularGearRim"
IsRimEffectEnabled="True"
ZIndex="0">
</ActiproGauge:CircularGauge>
</shared:ResizableContentControl>
<!--<shared:ResizableContentControl MinHeight="0" MinWidth="0" Height="220" Width="220">
<ActiproGauge:LinearGauge
IsManipulationEnabled="True"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Background="Black"
BackgroundType="ClippedRectangle"
GlassType="None"
RimBrush="Black" RimType="RectangleGradient"
IsRimEffectEnabled="True"
ZIndex="0">
</ActiproGauge:LinearGauge>
</shared:ResizableContentControl>-->
</Grid>