Demo of xAxis.dateTimeLabelFormats.day

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>

<script src="https://cdn.jsdelivr.net/npm/@highcharts/[email protected]" type="module"></script>

<figure class="highcharts-figure">
  <div id="container"></div>
</figure>

<div class="highcharts-controls-wrapper">
  <highcharts-controls>
    <highcharts-group header="Update options">
      <highcharts-control path="xAxis.dateTimeLabelFormats.day" value="%e of %b"></highcharts-control>
    </highcharts-group>
  </highcharts-controls>
</div>

CSS

* {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        "Apple Color Emoji",
        "Segoe UI Emoji",
        "Segoe UI Symbol",
        sans-serif;
}

.highcharts-figure {
    max-width: 800px;
    margin: 1em auto;
}

.highcharts-controls-wrapper {
    max-width: 800px;
    margin: 1em auto;
    padding: 0 10px;
}

highcharts-controls {
    display: inline-block;
}

TypeScript

Highcharts.chart('container', {
    title: {
        text: 'Demo of <em>xAxis.dateTimeLabelFormats.day</em>'
    },
    xAxis: {
        dateTimeLabelFormats: {
            day: '%e of %b'
        },
        type: 'datetime'
    },
    series: [{
        data: [
            29.9, 71.5, 106.4, 129.2, 144, 176, 135.6, 148.5, 216.4, 194.1,
            95.6, 54.4
        ],
        pointIntervalUnit: 'day',
        pointStart: '2010-01-01'
    }]
});