I'am using livecharts to display 3 Solid Gauges.
The "Value" and "To" Values are a simple Bindings.
My third chart displays the correctly Value as Label, but the ActiveFill wont show up correctly.
My xaml:
<lvc:Gauge
Width="100"
Height="100"
Margin="0,10,270,0"
HorizontalAlignment="Right"
VerticalAlignment="Top"
FontFamily="Roboto Black"
Foreground="#fff"
GaugeActiveFill="#c82333"
GaugeBackground="#FF202225"
Value="{Binding DescError}"
From="0"
To="{Binding DescCount}" />
<lvc:Gauge
Width="100"
Height="100"
Margin="0,10,150,0"
HorizontalAlignment="Right"
VerticalAlignment="Top"
FontFamily="Roboto Black"
Foreground="#fff"
GaugeActiveFill="#e0a800"
GaugeBackground="#FF202225"
Value="{Binding DescWarning}"
From="0"
To="{Binding DescCount}" />
<lvc:Gauge
Width="100"
Height="100"
Margin="0,10,40,0"
HorizontalAlignment="Right"
VerticalAlignment="Top"
FontFamily="Roboto Black"
Foreground="#fff"
GaugeActiveFill="#28a745"
GaugeBackground="#FF202225"
Value="{Binding DescOk}"
From="0"
To="{Binding DescCount}" />
I have no idea why this happens.
The bindings are all ok, right values are there.
Anyone out there with an idea?