im currently workinvg on react project and need to build a custom chart like below.
X and Y axis are weeks. In red color values every week lost machines and green indicates out of lost machines how many of them are actually recovered.
Net Lost is [Lost] - [Recovered]
Net Recovered is [Summation of Recovered for a particular week]
Ex: For Week 1 : 5 machines lost and 3 of them are recovered in week 3 and another one is recovered in week 6. so net lost is 5-1, and net recovered is 3+1.
But my problem is how can I build a custom visual like this using React Js. I'm very new to react and only worked with proper charts like bar/pie/line charts. Can someone suggest to me the path that I go need to follow? or some ideas or feedback
