As I work on developing a Sankey Diagram using the Highcharts JS library, I have encountered an issue with setting the axis. Can anyone advise whether it is feasible to utilize xAxis and yAxis in a Sankey diagram?
I attempted to define the axis as shown below:
yAxis: {
title: {
text: 'Sample',
}
},
xAxis: {
title: {
text: 'Sample'
}
},
However, my attempts were unsuccessful. I experimented with placing the code in various sections such as series
, plotOptions.sankey
, plotOptions.series
, and even while creating the chart itself, but none of these approaches yielded any results.
I am eagerly looking forward to receiving some guidance on this matter!