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 post. I have been looking into it, but I wasn’t able to reproduce your behavior, so if this is still an issue for you, could you please send me an isolated sample project, where this is reproduced, so I can investigate it further for you.
Looking forward for your reply.
Hi,
Thanks for your reply!
I have uploaded a simple sample. There is vertical white lines between each datapoint.
When I zoom out the chart, the white lines will to be reduced,
and when i zoom in the chart, the white lines will to be increased.
please help me, thanks!
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.
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>