我正在使用 WPF Toolkit ( System.Windows.Controls.DataVisualization.Toolkit
) 来生成一个简单的图表。为了将 Y 轴设置为从零值开始,我将Chart.Axes
属性设置如下:
<chartingToolkit:Chart Width="800" Height="400" Title="Usage" Style="{StaticResource ChartStyle}">
<chartingToolkit:Chart.Axes>
<chartingToolkit:LinearAxis Orientation="Y" Minimum="0" />
</chartingToolkit:Chart.Axes>
<chartingToolkit:LineSeries DependentValuePath="Value" IndependentValuePath="Key" ItemsSource="{Binding Data}" />
</chartingToolkit:Chart>
这工作正常。但是,当我尝试通过 a 设置此属性时Style
,智能感知甚至不显示Axes
.
<Style x:Key="ChartStyle" TargetType="{x:Type chartingToolkit:Chart}">
<Setter Property="Axes">
<Setter.Value>
<chartingToolkit:LinearAxis Orientation="Y" Minimum="0" />
</Setter.Value>
</Setter>
</Style>
如果我运行代码,我会ArgumentNullException
说Property
不能为空。这是Style.Setter.Property
. 我查看了 Codeplex 的源代码并找到了该Axes
属性:
[SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly", Justification = "Setter is public to work around a limitation with the XAML editing tools.")]
[SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId = "value", Justification = "Setter is public to work around a limitation with the XAML editing tools.")]
public Collection<IAxis> Axes
{
get
{
return _axes;
}
set
{
throw new NotSupportedException(Properties.Resources.Chart_Axes_SetterNotSupported);
}
}
它在这里说 Setter 是公开的,但我找不到任何这样的公开方法。现在我的问题是:
- 通过 Style 设置属性在技术上与此问题中的第一个代码块有何不同?
- 有没有办法
Axes
通过样式设置属性? - 我是否仍应将 WPF 工具包用于图表?是否有更新的“佳能”方法来生成我不知道的图表?