I am using amchart (not stock chart) to generate charts of two or more datasets. I noticed that lines with different values are being adjusted by their max values. Please have a look at the attached screenshot:
As you can see for example the amount 1.8k is above the amount 4.2k because of the enabled auto-adjustment. Searching through the amcharts forum gave no result. Thanks you in advance!
UPDATE 1: I have found one post with the similar problem, but I think it is quite not a good way to adjust axises in such manner:
UPDATE 2: Taking into consideration the @zerion's answer I have written some lines in my backend to be sure the synchronization will always be correct. I calculate min and max values for each numeral field that will be used as an axis, then using usort I sort the dataset array by (max - min) condition.
Yes, or you can even tell the axis to synchronize:
valueAxis2.synchronizeWithAxis(valueAxis1); valueAxis2.synchronizationMultiplier = 1;
So you should only think of which of your axis has the widest range of values, and sync other axes to this one.