In an Amstock examples (1,2) I saw that the category field block is enabled during moving a cursor.
However I didn't manage to replicate this logic in my project
My chartCursorSettings are following
this.chart = window.AmCharts.makeChart("chartdiv", {
"path": AmCharts_path,
"type": "stock",
"theme": "light",
"dataSets": portfolioData.map(function (port, idx) {
return {
"title": port.name,
"fieldMappings": [{
"fromField": "value",
"toField": "value"
}],
"dataProvider": port.data,
"compared": (idx === 0 ? false : true),
"categoryField": "date"
}
}),
"panels": [{
"showCategoryAxis": false,
"title": "Value",
"percentHeight": 70,
"stockGraphs": [
{
"id": "g1",
"valueField": "value",
"comparable": true,
"compareField": "value",
"balloonFunction": this.ballonRender,
"compareGraphBalloonFunction": this.ballonRender
}]
}],
"chartScrollbarSettings": {
"graph": "g1"
},
"categoryAxis": {
"parseDates": true
},
"balloon": {
"fixedPosition": true,
"maxWidth": 10000
},
"chartCursorSettings": {
"valueBalloonsEnabled": true,
"categoryBalloonEnabled": true,
"categoryBalloonAlpha": 0.2,
"bulletsEnabled": true,
"bulletSize": 10,
"categoryBalloonDateFormats": [
{period:'fff',format:'JJ:NN:SS'},
{period:'ss',format:'JJ:NN:SS'},
{period:'mm',format:'JJ:NN'},
{period:'hh',format:'JJ:NN'},
{period:'DD',format:'MMM DD'},
{period:'WW',format:'MMM DD'},
{period:'MM',format:'MMM'},
{period:'YYYY',format:'YYYY'}
]
},
"listeners": [{
"event": "zoomed",
"method": this.calulateMetrics
}],
"periodSelector": {
"position": "bottom",
"periods": [{
"period": "MM",
"count": 1,
"label": "1 month"
}, {
"period": "MM",
"count": 3,
"label": "3 month"
}, {
"period": "MM",
"count": 6,
"label": "6 month"
}, {
"period": "YYYY",
"count": 1,
"label": "1 year"
}, {
"period": "YTD",
"label": "YTD"
}, {
"period": "MAX",
"selected": true,
"label": "All"
}]
},
});
},
Also I set parseDates to true
"categoryAxis": {
"parseDates": true
},
I tried to specify the "dataDateFormat": "YYYY-MM-DD" but it didn't help me either.
I pass the JavaScript Date object to category field.

The categoryBalloon from the chartCursor requires that the
categoryAxisbe visible. SettingshowCategoryAxis: falsein your panel effectively removes the balloon since you're removing the category axis.If you don't want the categoryAxis labels but want the category balloon, set
labelsEnabledtofalsein yourcategoryAxesSettings.Demo
Some helpful clarifications:
categoryAxisdoesn't do anything at the top level of the stock chart and all stock charts hasparseDatesenabled by default.categoryAxesSettingsis the equivalent in this case.dateDateFormattells AmCharts how to parse your string-based dates in yourdataProvider. Since you're usingDateobjects, this doesn't do anything.