This is intentionally, because usually when the time is 0:00, people want to see only the date. In your case this seems not to be so correct.
Here is the tooltip formatting you can use:
Code:<script lang="javascript" type="text/javascript">
$(document).ready(function () {
$('#jqChart').bind('tooltipFormat', function (e, data) {
var date = data.chart.stringFormat(data.x, "m/d/yyyy HH:MM");
var tooltip = '<b>' + date + '</b></br>' +
'<span style="color:' + data.series.fillStyle + '">' + data.series.title + ': </span>' +
'<b>' + data.y + '</b></br>';
return tooltip;
});
});
</script>
You need to place it in your page like in this example:
http://www.jqchart.com/aspnetmvc/chart/ChartFeatures/TooltipsBest Regards,
Dragan Matek
jqChart Inc.