Govinda Rajbhar
Govinda Rajbhar

Reputation: 3034

High chart Displaying wrong month value in xaxis

Issue Description: Trying to display month-year value in xAxis for example 'Jan 2016' to 'Dec 2016'. I have the same value in $scope.chartxAxisData object but when display this value after formatting in xAxis it start to display from 'Dec 2015' to 'Nov 2016'

//$scope.chartxAxisData Data as follow

//Value in  Time
// $scope.chartxAxisData = [1451586600000, 1454265000000, 1456770600000, 1459449000000, 1462041000000, 1464719400000,1467311400000,1469989800000, 1472668200000, 1475260200000, 1477938600000, 1480530600000];

//Value in Date
//[Fri Jan 01 2016 00:00:00 GMT+0530 (India Standard Time), Mon Feb 01 2016 00:00:00 GMT+0530 (India Standard Time), Tue Mar 01 2016 00:00:00 GMT+0530 (India Standard Time), Fri Apr 01 2016 00:00:00 GMT+0530 (India Standard Time), Sun May 01 2016 00:00:00 GMT+0530 (India Standard Time), Wed Jun 01 2016 00:00:00 GMT+0530 (India Standard Time), Fri Jul 01 2016 00:00:00 GMT+0530 (India Standard Time), Mon Aug 01 2016 00:00:00 GMT+0530 (India Standard Time), Thu Sep 01 2016 00:00:00 GMT+0530 (India Standard Time), Sat Oct 01 2016 00:00:00 GMT+0530 (India Standard Time), Tue Nov 01 2016 00:00:00 GMT+0530 (India Standard Time), Thu Dec 01 2016 00:00:00 GMT+0530 (India Standard Time)]

var axisLabelFormatter = function (self, serieData2) {                    
    var label = Highcharts.dateFormat('%b %Y', serieData2[self.value]);
    return label;                    
};

$scope.chartData = {
    chart: {
        type: 'column'
    },
    title: {
        text: ''
    },
    time: {
        useUTC: false
    },
    xAxis: {
        type: 'datetime',
        labels: {
            formatter: function() {
                return axisLabelFormatter(this, $scope.chartxAxisData);
            },
            style: {
                fonFamily: 'Verdana,sans-serif,aria',
                fontSize: 13
            },
            overflow: false
        },
        min: 0,
        max: $scope.chartxAxisData.length - 1
    },
    yAxis: {
        min: 0,
        title: {
            text: 'ADR',
            style: {
                fontSize: '20px'
            }
        },
        labels: {
            formatter: function() {
                return $scope.kpiprefix + this.axis.defaultLabelFormatter.call(this);
            }
        }
    },
    tooltip: {
        headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
        pointFormat: '<table><tr><td style="padding:0"><b>' + $scope.kpiprefix + '{point.y:.1f}</b></td></tr>',
        footerFormat: '</table>',
        shared: true,
        useHTML: true
    },
    plotOptions: {
        column: {
            pointPadding: 0.1,
            borderWidth: 0
        },
        series: {
            color: '#a3ca5f'
        }
    },
    series: [{
        showInLegend: false,
        name: 'series',
        data: $scope.chartSeriesData
    }]
};

Output enter image description here

It should have start from jan 2016.

Upvotes: 1

Views: 425

Answers (1)

user9420984
user9420984

Reputation:

Your time is out of scope because you are facing timezone issues, the parser probably parses the longs to a different timezone, resulting into a time in the previous month. You should apply this function to your charts. It is a global function which sets the timezone for all your graphs.

Highcharts.setOptions({
    time: {
        timezone: 'Asia/Kolkata'
    }
});

Or, replace the
time: { useUTC: false }
within your highcharts code you already posted with this, to change it locally.

Additionally, in order for this to work, you should also import some moment.js libraries.

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.13/moment-timezone-with-data-2012-2022.min.js"></script>

Find more information about times in Highcharts API

Upvotes: 1

Related Questions