我刚刚找到了Google表格的ImageCharts附加组件,可以将二字形图嵌入到单元格(https://documentation.image-charts.com/guides/graph-in-google-sheets/)中。这确实很整洁而且很有帮助,但是我需要能够增加权重(即边缘标签)。 ImageCharts在https://documentation.image-charts.com/graph-viz-charts/的“全图”中显示了此示例。但是我看不到使用Google表格附加组件传递权重的方法。
我愿意接受涉及Google表格中应用脚本的建议。
答案 0 :(得分:1)
使用label property可以做到:
https://image-charts.com/chart?cht=gv&chl=digraph G {
a -> b [ label="a to b" ];
b -> c [ label="another label"];
}