Hi Alfie,
We have analyzed your requirement and we suspect that your requirement is to see only polynomial line in SfChart. You can achieve this by setting series’s Interior as Transparent as per the below code snippet.
Code snippet
<chart:FastLineBitmapSeries XBindingPath="XValue" YBindingPath="YValue"
Interior="Transparent" ItemsSource="{Binding Data}">
<chart:FastLineBitmapSeries.Trendlines>
<chart:Trendline Type="Polynomial"/>
</chart:FastLineBitmapSeries.Trendlines>
</chart:FastLineBitmapSeries> |
Screenshot:
If your requirement different from this, please give more information (pictorial representation) about your requirement that would be helpful for us to give better solution in this.
Thanks,
Muneesh Kumar G.