Hello, I'm trying to pattern fill some countries on the world map using an older example of a Highcharts Map I've seen online. Looking at their code they have set their SVG patterns in defs : { patterns : ... } then they are referring to these patterns in their series data using series: data : [ color: url(#name-of-new-pattern) ]
Has this functionality been removed in more recent versions of Highchart Maps? I noticed that in this example I don't think the default highchart patterns are working now: https://jsfiddle.net/highcharts/3m1hjja6/
So I suppose my question is do SVG patterns have to be added individually to every data item or can they be added in the SVG's <defs><pattern> area?
Thanks.