I'm currently working on a project with angularJS and utilizing the npm package amcharts3 "^3.21.15". I've encountered a minor issue regarding the logarithmic scale in my XY chart. Below is my chart without the logarithmic scale:
View working chart without logarithmic scale
Here's the ValueAxes code snippet I'm using:
"valueAxes": [{
//"logarithmic": true,
"minMaxMultiplier": 1.2,
"position": "bottom",
"axisAlpha": 0,
"title": "Groups"
}, {
//"logarithmic": true,
"minMaxMultiplier": 1.2,
"axisAlpha": 0,
"position": "left"
}
]
When enabling both log scales, the chart appears blank:
Check out the non-functional blank chart
If I activate just one scale (X or Y), the chart still fails to display the data, showing only the axes lines and values:
View problematic chart displaying only one axis information
No errors are present in the browser console.
Can anyone provide assistance with this issue?
Thank you!