我有BubbleChart
这里我想添加个人Style
来显示ToolTip
。当我这样做时,ToolTip
就在那里,一切都很好,直到我添加了第二个系列 - 现在以前的颜色设置(每个系列颜色不同)都消失了,每个系列都有相同的颜色。有人知道如何绑定系列的默认颜色吗?
我尝试了Template Binding
,但无效。
<Style x:Key="BubbleToolTipTemplate" TargetType="{x:Type c:BubbleDataPoint}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="c:BubbleDataPoint">
<Grid RenderTransformOrigin=".5,.5">
<Grid.RenderTransform>
<ScaleTransform ScaleX=".75" ScaleY=".75" />
</Grid.RenderTransform>
<!-- This Ellipse should bind on the default color -->
<Ellipse Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" />
<ContentPresenter Content="{TemplateBinding Size}" HorizontalAlignment="Center" VerticalAlignment="Center" />
<ToolTipService.ToolTip>
<StackPanel>
<ContentControl Content ="{ TemplateBinding DependentValue, Converter={StaticResource DoubleToStringConverter}}" />
<ContentControl Content ="{ TemplateBinding IndependentValue}"/>
<ContentControl Content ="{ TemplateBinding Size }" />
</StackPanel>
</ToolTipService.ToolTip>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
也许之前有人处理过这个问题!任何帮助表示赞赏!
答案 0 :(得分:0)
好的,我找到了解决方案!
在背景中有generic.xaml,你可以在其中找到Bubbledatapoint的默认样式(你可以找到这个here)。
正如我读到的那样,如果找到了Palette资源。后来我试图绑定这些颜色,直到我找到了诀窍!
只需将椭圆的填充属性设置为{DynamicResource Background}“!