I tried with the latest jars provided. Still the issue persists.
Please find my code below:
var first = {
title : 'Range2',
type : 'verticalline',
data : b,
markers : {
size : 10,
type : 'rectangle',
strokeStyle : '#0071C6',
fillStyle : '#0071C6',
lineWidth : 1
}
};
var second = {
title : 'Range1',
type : 'verticalline',
data : c,
markers : {
size : 10,
type : 'rectangle',
strokeStyle : '#FFC300',
fillStyle : '#FFC300',
lineWidth : 1
}
};
var tempHeight = $('#' + thisPnl.id + "-body").height();
$('#bst-graph').height(tempHeight - 50 + 'px');
$('#bst-graph').jqChart({
paletteColors : {
type : 'customColors',
customColors : [ '#0071C6', '#FFC300' ]
},
tooltips: {
disabled : true
},
border : {
//cornerRadius: 20,
lineWidth : 0
//strokeStyle: '#6ba851'
},
axes : [ {
location : 'left',
type : 'dateTime',
labels : {
stringFormat : 'mm/dd HH:MM'
},
title : {
text : 'Date/Time',
fillStyle : 'black'
},
intervalType : 'hours',
interval : 6,
reversed : true,
majorGridLines : {
visible : false
}
}, {
location : 'bottom',
type : 'linear',
minimum : 0,
//maximum : 600,
labels : {
font : '9px sans-serif',
intervalOffset : 50
//angle: -45
},
majorTickMarks : {
intervalOffset : 50
},
interval : 50,
title : {
text : 'BST',
fillStyle : 'black'
},
majorGridLines : {
visible : false
}
} ],
series : [ first, second
]
});
Please help.