Hi Ronnie,
Can you post the code you use to configure the axis? - this result can be caused if you use fixed date time formatting which is not suitable for the current step determined by the axis. In other words you probably specified day / month / year formatting, but the step uses half day step (as it is probably automatically computed), which results in two equal labels on the axis.
Best Regards,Nevron Support Team
You probably need to modify the format for half day unit:
_DateTimeScaleConfigurator.DateTimeUnitFormatterPairs.HalfDayFormatter.FormatSpecifier = "SomeNewFormat";
For example "yy MM dd tt" - for year, month, day followed by AM/PM depending on the part of day. Also it does not make sense to turn off and then off the unit sensitive formatting:
_DateTimeScaleConfigurator.EnableUnitSensitiveFormatting = False_DateTimeScaleConfigurator.EnableUnitSensitiveFormatting = True
You should leave only the last line...