回复 14楼kyb11111的帖子
我目前使用的版本是2014V3。
你的Demo调试过了,主要在于WPF和Silverlight平台有一定的差异性。所以根据你的Demo,我修改了Legend的Template的代码,主要就是将Template里的控件换成silverlight平台下支持的。
- <c1:C1ChartLegend>
- <c1:C1ChartLegend.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal" Margin="0,-2,0,-2">
- <Canvas Width="24" Height="24" Background="Transparent">
- <ContentPresenter Canvas.Top="2" Content="{Binding Path=Line}" Width="24" Height="20" />
- <ContentPresenter Canvas.Left="5" Canvas.Top="5" Content="{Binding Path=Symbol}" Width="14" Height="14" />
- </Canvas>
- <TextBlock Margin="2" Text="{Binding Path=Label}" VerticalAlignment="Center" />
- </StackPanel>
- </DataTemplate>
- </c1:C1ChartLegend.ItemTemplate>
- </c1:C1ChartLegend>
复制代码
也测试了ChartType是Column和Area。
你再次尝试下,如果有什么问题,请提出。 |