我正在使用 WPF DataVisualization 图表控件来显示一些示例数据。我的问题是 Y 轴显示十进制值。我怎样才能让它只显示整数值。
这是我的 XAML 代码
<chartingToolkit:Chart Margin="0,30,0,30" Name="columnChart" Title="" Foreground="Black" >
<chartingToolkit:ColumnSeries DependentValuePath="Value" Background="Red"
IndependentValuePath="Key" ItemsSource="{Binding}" >
<chartingToolkit:ColumnSeries.DataPointStyle>
<Style TargetType="Control">
<Setter Property="Background" Value="#A80729"/>
</Style>
</chartingToolkit:ColumnSeries.DataPointStyle>
</chartingToolkit:ColumnSeries>
</chartingToolkit:Chart>
聊天截图在这里