我在WPF工具包中使用图表和列系列来显示一年中每个月的值。一切都运行良好,图表加载,除了它看起来像垃圾,因为X轴上的系列标签都是重叠的,我无法弄清楚如何正确的尺寸。使用lineseries时,图表看起来很完美。
<DVC:Chart Name="accountChart" Width="Auto" Height="Auto" Background="Transparent" Margin="0,15,0,0" >
<DVC:Chart.Series>
<DVC:ColumnSeries Title=" Actual" IndependentValueBinding="{Binding Path=Month}" DependentValueBinding="{Binding Path=Amt}" Padding="10"/>
</DVC:Chart.Series>
</DVC:Chart>