You can do this with using the following code:
Code:$('#graph').bind('dataPointLabelCreating', function (e, data) {
var context = data.context;
var date = context.chart.stringFormat(context.dataItem[0], "mm/dd HH:MM");
data.text = date;
});
$('#graph').jqChart({
Just make sure you're handling the 'dataPointLabelCreating' event
before the jqChart declaration.
Best,
Ivan Petrov
jqChart Inc.