图谱: Difference between revisions

From wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 1: Line 1:
{{#network:Page1 | Page2 | Page3
digraph G {
| options=
    // 定义节点
{
     "气候变化" [shape=ellipse, style=filled, color=lightblue];
     "autoResize": true,
     "空气污染" [shape=ellipse, style=filled, color=lightgreen];
     "nodes": {
    "可再生能源" [shape=ellipse, style=filled, color=lightyellow];
        "color": "lightblue",
    "能源效率" [shape=ellipse, style=filled, color=lightpink];
        "shape": "box",
 
        "borderWidth": 3,
    // 定义边
        "font": { "color": "red", "size": 17 }
    "气候变化" -> "空气污染" [label="导致"];
    }
    "气候变化" -> "可再生能源" [label="减缓"];
    "可再生能源" -> "能源效率" [label="提升"];
}
}
}}

Revision as of 03:40, 24 April 2025

digraph G {

   // 定义节点
   "气候变化" [shape=ellipse, style=filled, color=lightblue];
   "空气污染" [shape=ellipse, style=filled, color=lightgreen];
   "可再生能源" [shape=ellipse, style=filled, color=lightyellow];
   "能源效率" [shape=ellipse, style=filled, color=lightpink];
   // 定义边
   "气候变化" -> "空气污染" [label="导致"];
   "气候变化" -> "可再生能源" [label="减缓"];
   "可再生能源" -> "能源效率" [label="提升"];

}