Documentation for using AmCharts in template

Hi - I am wondering if there is any documentation that would help me to use AmCharts in my template. I am trying to work with a line chart and need to change the colors of the lines. I went to the AmCharts website but not sure how to use it in my template.

Thank You

Amy,

Changing the lines can be done by using the following script as a custom JS snippet:

var colors = [‘#69BB38’,‘#C53B5B’,‘#D4D640’,‘#CB7DBF’,‘#364D91’];

$(‘g[clip-path^=“url(#AmChartsEl”] path’).each(function(index){

  $(__this__).attr('stroke',colors[index]);

});

Hopefully this helps.

Regards,

James.