SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
When i am in Zoom in my X axis values are repeated (See attached image) i think the problem with autoticks the xaml code for x axis is
<s:SciChartSurface.XAxis>
</s:SciChartSurface.XAxis>
how can i fix this?
Hi Raghupathy,
This occurs because the default NumericAxis.TextFormatting = “0.###”
Take a look at this article on MSDN about Custom Numeric Format Strings
“#” Digit placeholder: Replaces the “#” symbol with the corresponding
digit if one is present; otherwise, no digit appears in the result
string.e.g. 1234.5678 (“#####”) -> 1235
If you want to see decimal places, you need to set a StringFormat that includes decimals. For instance:
NumericAxis.TextFormatting = "0.000###"
Will always show 3 decimal places. For more advanced string-formatting, please see our LabelProvider API.
Best regards,
Andrew
Please login first to submit.