I have tried a few things, even just manually converting the series structure from the example and no luck.
Not Working - Example Data Structure
[
{
"name": "Bob",
"data": [
{
"x": "Design",
"y": [
{
"$": [
"ts",
192,
1705464014178
],
"$ts": 1551744000000
},
{
"$": [
"ts",
192,
1705464014179
],
"$ts": 1552003200000
}
]
},
{
"x": "Code",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551484800000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551744000000
}
]
},
{
"x": "Code",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551744000000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551916800000
}
]
},
{
"x": "Test",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551571200000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552089600000
}
]
},
{
"x": "Test",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552003200000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552262400000
}
]
},
{
"x": "Validation",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552262400000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552694400000
}
]
},
{
"x": "Design",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551315600000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551571200000
}
]
}
]
},
{
"name": "Joe",
"data": [
{
"x": "Design",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551484800000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551744000000
}
]
},
{
"x": "Test",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551830400000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552694400000
}
]
},
{
"x": "Code",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551571200000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551916800000
}
]
},
{
"x": "Deployment",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1553040000000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1553212800000
}
]
},
{
"x": "Design",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552176000000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552694400000
}
]
}
]
},
{
"name": "Dan",
"data": [
{
"x": "Code",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552176000000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552780800000
}
]
},
{
"x": "Validation",
"y": [
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1551744000000
},
{
"$": [
"ts",
192,
1705464014180
],
"$ts": 1552089600000
}
]
}
]
}
]
Working - Example Data Structure
[
{
"name": "Bob",
"data": [
{
"x": "Design",
"y": [1551744000000,1552003200000]
},
{
"x": "Code",
"y": [1551484800000,1551744000000]
},
{
"x": "Code",
"y": [1551744000000,1551916800000]
},
{
"x": "Test",
"y": [1551571200000,1552089600000]
},
{
"x": "Test",
"y": [1552003200000,1552262400000]
},
{
"x": "Validation",
"y": [1552262400000,1552694400000]
},
{
"x": "Design",
"y": [1551315600000,1551571200000]
}
]
},
{
"name": "Joe",
"data": [
{
"x": "Design",
"y": [1551484800000,1551744000000]
},
{
"x": "Test",
"y": [1551830400000,1552694400000]
},
{
"x": "Code",
"y": [1551571200000,1551916800000]
},
{
"x": "Deployment",
"y": [1553040000000,1553212800000]
},
{
"x": "Design",
"y": [1552176000000,1552694400000]
}
]
},
{
"name": "Dan",
"data": [
{
"x": "Code",
"y": [1552176000000,1552780800000]
},
{
"x": "Validation",
"y": [1551744000000,1552089600000]
}
]
}
]