I have a AmCharts serial chart with some columns representing numeric values. Depending on those values, sometimes one of the axes "unsticks" from the ground, making a weird effect. I have unsuccessfully tried to set the property valueAxis.minimum to zero.
Is there a way to force a valueAxis to start from zero?
AmCharts.makeChart("chartdiv", {
"type": "serial",
"synchronizeGrid": true,
"valueAxes":
[{
"minimum": 0,
// ...
}]
// ...
});