score:1

Accepted answer

The implementation will be very easy with Highcharts. You can just use two x-axes, hide the first one and adapt the second one for your needs. For example:

xAxis: [{
    visible: false
}, {
    lineWidth: 2,
    min: -0.5,
    max: 2.5,
    gridLineWidth: 1,
    categories: ['30 Days Before', 'Insight Period', '30 Days After']
}]

Live demo: http://jsfiddle.net/BlackLabel/12zbg0m3/

API Reference: https://api.highcharts.com/highcharts/xAxis


Related Query

More Query from same tag