Silverlight 3 工具包图表 并非所有列都显示

Silverlight 3 Toolkit Chart Not all Columns show

我似乎找不到解决这个奇怪问题的方法。我有一个未显示所有列的 Silverlight 3 工具包柱形图。我有一个 10 列的数据集,它只显示 7。

图表图像:

<UserControl x:Class="graph.bd" 
xmlns:DV="clr-namespace:System.Windows.Controls.DataVisualization;assembly=System.Windows.Controls.DataVisualization.Toolkit"
xmlns:DVC="clr-namespace:System.Windows.Controls.DataVisualization.Charting;assembly=System.Windows.Controls.DataVisualization.Toolkit">
<UserControl.Resources>
    <Style x:Key="ColorByGradeColumn" TargetType="DVC:ColumnDataPoint">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="DVC:ColumnDataPoint">
                    <Border  Background="{Binding ColColor}" 

                     BorderBrush="{Binding ColColor}" 

                     BorderThickness="0.5">

                    </Border>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</UserControl.Resources>
<!-- canvases and other code goes here... -->
<DVC:Chart x:Name="Graphic" Width="350" Height="250" Background="Transparent">

                        <DVC:Chart.Series>
                            <DVC:ColumnSeries Title="Fras"
                            IndependentValueBinding="{Binding ColName}"
                            DependentValueBinding="{Binding ColValue}"                                             
                            DataPointStyle="{StaticResource ColorByGradeColumn}"
                                              >
                                <DVC:ColumnSeries.IndependentAxis>
                                    <DVC:CategoryAxis Orientation="X">
                                        <DVC:CategoryAxis.AxisLabelStyle>
                                            <Style TargetType="DVC:AxisLabel">
                                                <Setter Property="Template">
                                                    <Setter.Value>
                                                        <ControlTemplate TargetType="DVC:AxisLabel">
                                                            <Grid Width="70" ShowGridLines="True"  Height="8" Background="Transparent" 

                                                         HorizontalAlignment="Left"  VerticalAlignment="Bottom">
                                                                <TextBlock x:Name="YAxisTitle" HorizontalAlignment="Center" VerticalAlignment="Center"  Text="{Binding}" RenderTransformOrigin="0.5,0.5" FontSize="8">
                                                            <TextBlock.RenderTransform>                
                                                            <RotateTransform Angle="270" CenterX="5"/>
                                                             </TextBlock.RenderTransform>
                                                                </TextBlock>
                                                                <Grid.RenderTransform>
                                                                    <RotateTransform Angle="60" ></RotateTransform>
                                                                </Grid.RenderTransform>
                                                            </Grid>
                                                        </ControlTemplate>
                                                    </Setter.Value>
                                                </Setter>
                                            </Style>
                                        </DVC:CategoryAxis.AxisLabelStyle>
                                    </DVC:CategoryAxis>
                                </DVC:ColumnSeries.IndependentAxis>
                            </DVC:ColumnSeries>
                        </DVC:Chart.Series>
                        <DVC:Chart.PlotAreaStyle>
                            <Style TargetType="Grid">
                                <Setter Property="Background" Value="Black" />
                            </Style>
                        </DVC:Chart.PlotAreaStyle>
                        <DVC:Chart.LegendStyle>
                            <Style TargetType="DV:Legend">
                                <Setter Property="Width" Value="0"/>
                                <Setter Property="Height" Value="0"/>
                            </Style>
                        </DVC:Chart.LegendStyle>
                        <DVC:Chart.Foreground>
                            <SolidColorBrush Color="White"></SolidColorBrush>
                        </DVC:Chart.Foreground>

                    </DVC:Chart>

我的数据集仅由 3 个值组成:主数字是一个整数,表示列的高度,列名是一个字符串,我无法在图片中显示,以及绑定在样式上的列的颜色,并且可以在后面的代码中更改。

我也无法升级到 silverlight 4 或更高版本,因为这个包含列的页面嵌入了另一个仅在 silverlight 3 上运行的页面

编辑:实际上我在页面中还有另外 3 个图表可以正常工作,只有这个有问题。所有四个在 .xaml 中都有完全相同的代码(显然 x:name 不同)并且所有 4 个在 xaml.cs 中都有非常相似的代码。请有人帮忙,我真的需要解决这个问题。如果需要,我可以提供更多代码。

编辑 2:

我认为发生的情况是其中一个列落后于或超过其他列,但我不明白为什么。 None 的其他图表存在此问题。

好的,所以我发现出了什么问题。结果是数据,加载的 10 行之一在 X 轴的列上具有相同的值,但 Y 值不同,因此图表将两列显示为一个。

我很尴尬,但我希望有一天能帮到别人。