Hi, I have the following two line series and want to know how to fill the area between the lines. I'm looking for something similar to what you show in the area range example (https://www.highcharts.com/demo/highcharts/arearange). From that example it seems like the both series share the same x values but in my sample data, even though the number of points are the same, the x values are different. How can I convert this data to an area range or is there a different approach to this?
series1 = [[0, 0], [1, 2], [2, 4], [3, 8], [4, 32]];
series2 = [[1, 0], [2, 2], [3, 3], [4, 15], [5, 32]];
Regards,
Walter