chart js rotate label text on radar chart – is it possible?

I have Chart js radar diagram with 24 labels.

I need to rotate every next label text to 15 degrees from previous: ‘Label 1’ is on the top and it’s vertical, ‘Label 2’ rotated on 15 degrees clockwise etc.

Is there some option for this?

Here’s the code:

import React from 'react';
import { Radar } from 'react-chartjs-2';
import { Chart as ChartJS, RadialLinearScale, PointElement, LineElement, Filler, Tooltip, Legend } from 'chart.js';

const data = {
    labels: [ 'Label 1', 'Label 2', 'Label 3', 'Label 4', 'Label 5', 'Label 6', 'Label 7', 'Label 8', 'Label 9', 'Label 10', 'Label 11', 'Label 12', 'Label 13', 'Label 14', 'Label 15', 'Label 16', 'Label 17', 'Label 18', 'Label 19', 'Label 20', 'Label 21', 'Label 222', 'Label 23', 'Label 24' ],
    datasets: [
        {
            label: 'Dataset 1',
            data: [65, 59, 90, 81, 56, 65, 59, 90, 81, 56, 65, 59, 90, 81, 56, 65, 59, 90, 81, 56,],
            backgroundColor: 'rgba(255, 99, 132, 0.2)',
            borderColor: 'rgba(255, 99, 132, 1)',
            borderWidth: 1,
        },
    ],
};

const options: any = {
    scales: {
        r: {            
            ticks: {
                display: false 
            },
            angleLines: {
                display: true,
                color: '#90B7DA',
                borderDash: [11, 10],
                borderDashOffset: 5,
                lineWidth: 1
            },
            angle: 115,
            suggestedMin: 0,
            suggestedMax: 100,
            pointLabels: {
                font: {
                    family: 'Open Sans',
                    size: 10,
                    weight: '300',
                },
                color: '#90B7DA',
                
            }
        }
    },
    plugins: {
        legend: {
            display: false,
        }
    },

};

const RadarChart = () => (

    <Radar data={data} options={options} />
);

export default RadarChart;