Time display on X-axis for interval less than an hour

My x-axis has a date histogram, it does display both date and time only if the interval selected is greater than an or equal to one hour, for intervals less than an hour,only time stamp is displayed,its confusing to view last two days of data .
And time format is already set to dateFormat:scaled in the settings.
Is there any solution for this?

Could you post your current dateFormat:scaled setting?

This is the value in that setting

[
["", "HH:mm:ss.SSS"],
["PT1S", "HH:mm:ss"],
["PT1M", "HH:mm"],
["PT1H", "YYYY-MM-DD HH:mm"],
["P1DT", "YYYY-MM-DD"],
["P1YT", "YYYY"]
]

["PT1H", "YYYY-MM-DD HH:mm"] defines the format for time ranges larger than 1 hour. If you want to see the date for time ranges lower than 1 hour (and larger than one minute), you have to modify the line above:

[
["", "HH:mm:ss.SSS"],
["PT1S", "HH:mm:ss"],
["PT1M", "YYYY-MM-DD HH:mm"],
["PT1H", "YYYY-MM-DD HH:mm"],
["P1DT", "YYYY-MM-DD"],
["P1YT", "YYYY"]
]

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.