I would like to know if anyone has knowledge of this library link I am trying to make some graphics with it, only that I have a small inconvenience with the format that they handle which is the following:
[
[ new Date("2009/07/12"), 100, 200 ],
[ new Date("2009/07/19"), 150, 220 ]
]
As you can see I have an arrangement with 2 more arrangements inside, each of them has different data and are represented in this way in the graph, the problem arises when the 2 arrangements have the same date but different data:
[
[ new Date("2009/07/12"), 100, 200 ],
[ new Date("2009/07/12"), 150, 220 ]
]
Only the first one is showing me, but I really need you to show me the 2 data with the same date and different values