1

我似乎无法找到解决这个奇怪问题的方法。我有一个未显示所有列的 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),并且所有四个在 xaml.cs 中都具有非常相似的代码。请有人帮忙,我真的需要解决这个问题。如果需要,我可以提供更多代码。

编辑2:

我认为正在发生的事情是其中一个专栏落后或超过其他专栏,但我不明白为什么。其他图表都没有这个问题。

4

1 回答 1

2

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

我很尴尬,但我希望有一天这能帮助某人。

于 2018-02-17T20:03:07.270 回答