Hi
When I create a XamChart with ChartType is StackedArea, I find a vertical white line between each datapoint .
I set the Series's StrokeThickness to 0, but it doesn't take effect.
How can I remove these lines, please help me, thanks!!
Hello,
Thank you for your feedback. I am glad that you resolved your issue and I believe that other community members may benefit from this as well.
Thanks again.
Thanks for your help!
When I updated the vertion to [Version=11.1.20111.2173], the problem was be solved.
Thanks!
I noticed that the sample you sent uses the RTM of version 11.1 assemblies, so I tested it with the latest service release and there your issue has been fixed, so I suggest you download it by logging to our web site and going to My IG \My Keys and Downloads. Please let me know if this helps you or you need further assistance on this matter.
Looking forward for your reply.
Hi,
Teodor Taushanov"] Hi, Try changing your XAML code to: <Grid> <Grid.Resources> <Style TargetType="{x:Type Polygon}"> <Setter Property="StrokeLineJoin" Value="Round" /> </Style> </Grid.Resources> <StackPanel Name="spChart" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"></StackPanel> </Grid>
I have tried the code in my simple sample,but it still has the vertical white lines.
Is there some changes in the .cs file?
Could you upload your sample for me? Thanks very much!
Best regards
Try changing your XAML code to:
<Grid>
<Grid.Resources>
<Style TargetType="{x:Type Polygon}">
<Setter Property="StrokeLineJoin" Value="Round" />
</Style>
</Grid.Resources>
<StackPanel Name="spChart" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"></StackPanel>
</Grid>