var load = function (args) {
args.chart.primaryXAxis.border = { type: 'WithoutTopandBottomBorder', width: 0 };
args.chart.primaryXAxis.multiLevelLabels = ([
{
border: { type: 'WithoutTopandBottomBorder', width: 1 },
categories: [
{ start: -0.5, end: 2.5, text: '10/17/2019', },
{ start: 2.5, end: 5.5, text: '10/18/2019', },
{ start: 5.5, end: 10.5, text: '10/19/2019', },
]
}])
}; |