我已经实现了一个Sankey diagram
in JavaScript
using Highcharts.js
。我目前正在尝试R
使用( forHighcharter
的包装器)实现相同的图表。Highcharts
R
我的问题是我无法sankey.series.nodes
像在JavaScript
. 中的代码JS
如下所示:
series: [{
pointPlacement: 'on',
keys: ['from', 'to', 'weight', 'trx'],
data: data.data,
type: 'sankey',
name: 'Sankey Series',
nodes: nodes
}]
其中nodes
是具有以下格式的对象数组:
id: product.id,
name: product.product,
trx: product.trx,
color: nodeColor,
但是,当我这样做时,R
什么都没有发生..
hc_add_series(pointPlacement = 'on',
data = productData,
type = 'sankey',
nodes = nodes,
name = 'Sankey Series')
我现在很迷茫,任何帮助将不胜感激!