I'm using C# WPF with Syncfusion component
I'm working with SfChart
control , here is my chart :
I want to set thousand separator string format for my SplineSeries
chart
XAML:
<syncfusion:SfChart Visibility="Visible" Margin="5">
<syncfusion:SfChart.Behaviors>
<syncfusion:ChartZoomPanBehavior EnableMouseWheelZooming="True" EnablePinchZooming="True" EnableZoomingToolBar="True" EnablePanning="True" ZoomRelativeToCursor="True" >
</syncfusion:ChartZoomPanBehavior>
</syncfusion:SfChart.Behaviors>
<syncfusion:SfChart.PrimaryAxis>
<syncfusion:CategoryAxis LabelFormat="#,#"/>
</syncfusion:SfChart.PrimaryAxis>
<syncfusion:SfChart.SecondaryAxis>
<syncfusion:NumericalAxis Header="مبلغ" LabelFormat="#,#" />
</syncfusion:SfChart.SecondaryAxis>
<chart:SfChart.Legend>
<chart:ChartLegend DockPosition="Top" ItemStringFormat="#,#"/>
</chart:SfChart.Legend>
<syncfusion:SplineSeries ItemsSource="{Binding PISH_90_DATA}" Label="پیش فاکتور های 90 روزه" EnableAnimation="True" XBindingPath="DD" YBindingPath="MABL_K" ShowTooltip="True">
<syncfusion:SplineSeries.AdornmentsInfo>
<chart:ChartAdornmentInfo ShowLabel="False" SegmentLabelFormat="#,#">
</chart:ChartAdornmentInfo>
</syncfusion:SplineSeries.AdornmentsInfo>
</syncfusion:SplineSeries>
</syncfusion:SfChart>
document of Tooltip chart : Tooltip in WPF Charts (SfChart) https://help.syncfusion.com/wpf/charts/interactive-features/tooltip
How can I do that ?