How can I display the time along the x-axis in the Line chart?
visState of chart (Kibana 5.3)
{
"title": "Conversation",
"type": "line",
"params": {
"addLegend": true,
"addTimeMarker": true,
"addTooltip": true,
"defaultYExtents": false,
"drawLinesBetweenPoints": true,
"interpolate": "cardinal",
"legendPosition": "right",
"orderBucketsBySum": false,
"radiusRatio": 9,
"scale": "linear",
"setYExtents": false,
"showCircles": true,
"times":
},
"aggs": [
{
"id": "2",
"enabled": true,
"type": "date_histogram",
"schema": "segment",
"params": {
"field": "@timestamp",
"interval": "m",
"customInterval": "1m",
"min_doc_count": 1,
"extended_bounds": {},
"customLabel": "Time"
}
},
{
"id": "3",
"enabled": true,
"type": "avg",
"schema": "metric",
"params": {
"field": "Conversion"
}
}
],
"listeners": {}
}