简体   繁体   中英

fail to make xAxis on Highstock chart to go before

I have a jsFiddle here to show my problem,

I want my chart to start on xAxis two month before than it has data on it,

how can I show from two month before?

   'xAxis': {
        'min': Date.UTC(2013, 4, 24, 16, 44, 10),
        'startOnTick' : false,
        'startOfWeek': 6,
        'dateTimeLabelFormats': {
            'week': '%a,<br/>%e. %b'
        }
    },

start the data from the date you want to show in chart.

if there is no data give the y value as null

in your case you want the min for xAxis to be Date.UTC(2012, 1, 24, 16, 44, 10)

so start data from

data: [ [Date.UTC(2012, 1, 24, 16, 44, 10), null], [Date.UTC(2013, 6, 24, 16, 44, 10), 336000.], [Date.UTC(2013, 6, 27, 13, 57, 36), 393500.] ]

this will make the xAxis plot from the day you want.

I've updated your fiddle here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM