Is it possible to change the color of a gradientstop dynamically, dependent on the symbol being shown - via a uniquevaluerenderer?E.gHere is my maptip, i can get the gradientstop to look at this<Color x:Key="GS1">#FF00CC</Color>
<esri:FeatureLayer.MapTip>
<Border CornerRadius="10" BorderBrush="#FF222957" BorderThickness="3" Margin="0,0,15,15">
<Border.Background>
<LinearGradientBrush EndPoint="1.038,1.136" StartPoint="0.015,0.188">
<GradientStop Color="{StaticResource GS1}"/>
<GradientStop Color="#FF0088FF" Offset="0.946"/>
</LinearGradientBrush>
</Border.Background>
<Border.Effect>
<DropShadowEffect ShadowDepth="10" BlurRadius="14" Direction="300" />
</Border.Effect>
<StackPanel Margin="7">
<TextBlock Text="{Binding [ORG_NAME], Mode=OneWay}" FontWeight="Bold" Foreground="Black" />
<StackPanel Orientation="Horizontal">
<TextBlock Text="Type: " Foreground="Black" />
<TextBlock Text="{Binding [ORGTP_NAME], Mode=OneWay}" Foreground="Black" />
</StackPanel>
</StackPanel>
</Border>
</esri:FeatureLayer.MapTip>
and then reference GS1 but i want to pull these colors dynamically, preferably the same way as a uniquevaluerenderer does for a symbol. Basically the background color needs to change dependent on the symbol being shownso if i could add the gradientstop color to this<esri:UniqueValueInfo Value="1" Symbol="{StaticResource OOH}" />
then that would solve it i think, but i don't think it's possible?