data = {
return {
nodes: [
{ name: "From 2xx", category: "from", code: "2xx", sum: 7115 },
{ name: "From 3xx", category: "from", code: "3xx", sum: 1292 },
{ name: "From 4xx", category: "from", code: "4xx", sum: 96 },
{ name: "From 5xx", category: "from", code: "5xx" , sum: 23},
{ name: "To 2xx", category: "to", code: "2xx", sum: 3563},
{ name: "To 3xx", category: "to", code: "3xx", sum: 4331 },
{ name: "To 4xx", category: "to", code: "4xx" , sum: 624},
{ name: "To 5xx", category: "to", code: "5xx" , sum: 8},
],
links: [
{ source: "From 2xx", target: "To 2xx", value: "3259" },
{ source: "From 2xx", target: "To 3xx", value: "3424" },
{ source: "From 2xx", target: "To 4xx", value: "424" },
{ source: "From 2xx", target: "To 5xx", value: "8" },
{ source: "From 3xx", target: "To 2xx", value: "292" },
{ source: "From 3xx", target: "To 3xx", value: "830" },
{ source: "From 3xx", target: "To 4xx", value: "170" },
{ source: "From 4xx", target: "To 2xx", value: "4" },
{ source: "From 4xx", target: "To 3xx", value: "62" },
{ source: "From 4xx", target: "To 4xx", value: "30" },
{ source: "From 5xx", target: "To 2xx", value: "8" },
{ source: "From 5xx", target: "To 3xx", value: "15" },
],
units: "instances"
}
}