Highcharts 在highstock中更改导航器日期格式

Highcharts 在highstock中更改导航器日期格式,highcharts,highstock,navigator,Highcharts,Highstock,Navigator,我想更改导航器日期格式,例如从7月12日更改为2012年 我该怎么做 请帮忙 谢谢您可以为导航器使用xAxis参数并定义标签选项(如在标准轴中) navigator: { xAxis: { dateTimeLabelFormats: { day: '%Y', week: '%Y', month: '%Y', year: '

我想更改导航器日期格式,例如从7月12日更改为2012年

我该怎么做

请帮忙


谢谢

您可以为导航器使用xAxis参数并定义标签选项(如在标准轴中)

navigator: {
        xAxis: {
            dateTimeLabelFormats: {
                day: '%Y',
                week: '%Y',
                month: '%Y',
                year: '%Y'
            }
        }
    },