3

我正在使用 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>

聊天截图在这里

4

1 回答 1

4

设置间隔和最小值,

就像是,

    <chartingToolkit:ColumnSeries.DependentRangeAxis>
                <chartingToolkit:LinearAxis FontSize="15" Foreground="White" Interval="1" Minimum="0" Orientation="Y" ShowGridLines="False" />
            </chartingToolkit:ColumnSeries.DependentRangeAxis>
            <chartingToolkit:ColumnSeries.IndependentAxis>
                <chartingToolkit:CategoryAxis FontSize="12" Foreground="Gray" Orientation="X" ShowGridLines="False" />
            </chartingToolkit:ColumnSeries.IndependentAxis>

希望这可以帮助!

于 2012-02-21T13:11:40.443 回答