I'm currently developing Amchart chart and its reading form local database. I want a way to make the background grid lines above the graphs with
fillAlphas= 1?
You can try using this
You have to set gridAboveGraphs
to true in your chart config.
AmCharts.makeChart("chartdiv", {
// other config omitted
"gridAboveGraphs": true,
// ...
});