请问你解决了吗,我也遇到了这个问题
可以的,数据里可以设置 颜色:[data.color]series.sankey.data.color | Highcharts JS API 文档
也就是
{
keys: ['from', 'to','weight', 'color'],
data: [
['巴西', '葡萄牙', 5, 'rgba(255, 0, 0, 0.3)' ],
]
}
例子:桑基图 | JShare
或
{
data: [
{
from: '巴西',
to: '葡萄牙',
weight: 5,
color: 'red'
}
]
}