在 Silverlight 3 中,AreaDataPoint 模板似乎忽略了其 ControlTemplate 中设置的任何大小。
<ControlTemplate TargetType="chartingTK:AreaDataPoint">
<Grid x:Name="Root" Opacity="1">
<!-- Width and Height are ignored -->
<Ellipse Width="75" Height="25"
StrokeThickness="{TemplateBinding BorderThickness}"
Stroke="OrangeRed"
Fill="{TemplateBinding Background}"/>
</Grid>
</ControlTemplate>
有人知道解决方法吗?