Complete Graph with Six Nodes

Tasks

add nodes A-F add an edge between each distinct pair of nodes define a style named allNodes that fills the nodes with an vertical hashed pattern with thickness 1 set the style for every node to "allNodes"

JSON Representation

{
"directed": false,
"hasParents": false,
"nodes": {
  "A": {
    "style": "allNodes"
  },
  "B": {
    "style": "allNodes"
  },
  "C": {
    "style": "allNodes"
  },
  "D": {
    "style": "allNodes"
  },
  "E": {
    "style": "allNodes"
  },
  "F": {
    "style": "allNodes"
  }
},
"edges": {
  "AB": {
    "source": "A",
    "target": "B"
  },
  "AC": {
    "source": "A",
    "target": "C"
  },
  "AD": {
    "source": "A",
    "target": "D"
  },
  "AE": {
    "source": "A",
    "target": "E"
  },
  "AF": {
    "source": "A",
    "target": "F"
  },
  "BC": {
    "source": "B",
    "target": "C"
  },
  "BD": {
    "source": "B",
    "target": "D"
  },
  "BE": {
    "source": "B",
    "target": "E"
  },
  "BF": {
    "source": "B",
    "target": "F"
  },
  "CD": {
    "source": "C",
    "target": "D"
  },
  "CE": {
    "source": "C",
    "target": "E"
  },
  "CF": {
    "source": "C",
    "target": "F"
  },
  "DE": {
    "source": "D",
    "target": "E"
  },
  "DF": {
    "source": "D",
    "target": "F"
  },
  "EF": {
    "source": "E",
    "target": "F"
  }
},
"constraints": [],
"styles": {
  "allNodes": {
    "fillStyle": [
      "hashed",
      "vertical",
      1
    ]
  }
}
}