Hi @benaznbe
I will quote me once more.
@thomas-einasto136 said in ma-serial-chart can not run:
For more customization see amCharts own documentation which @Jared-Wiltshire and @phildunlap promote all the time on the forums and in Mango. It has all the documentation for them.
ref: https://www.amcharts.com/demos/simple-column-chart/
Snippet from previous code
"valueAxes": [{
"axisAlpha": 0,
"position": "left",
"title": "Level"
}],
Documentation for customizing amcharts regarding your request.
https://www.amcharts.com/demos/multiple-value-axes/
Snippet from this documentation link regarding valueaxes.
"valueAxes": [{
"id":"v1",
"axisColor": "#FF6600",
"axisThickness": 2,
"axisAlpha": 1,
"position": "left"
}, {
"id":"v2",
"axisColor": "#FCD202",
"axisThickness": 2,
"axisAlpha": 1,
"position": "right"
}, {
"id":"v3",
"axisColor": "#B0DE09",
"axisThickness": 2,
"gridAlpha": 0,
"offset": 50,
"axisAlpha": 1,
"position": "left"
}],
For all customizations of a single axis ref here
http://docs.amcharts.com/javascriptcharts/ValueAxis
I would strongly advise to look through all amCharts documentation again and see Mango own examples section of its components...
Cheers!
Thomas