Pre loader

X axis values repeated with autoticks

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

0
0

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?

Images
  • You must to post comments
0
0

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

Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies