Creating a categorical line chart in D3.js (V4)
问题 I'm relatively new to D3.js and I'm visualising the 'PassengersIn' & 'PassengersOut' values from my busdatasimple.json file. For reference, one of the JSON objects looks like this; { "BusNo": "1", "Date": "21 November 2016", "Time": "09:10:34 AM", "Destination": "Pier 50", "Longitude": "-122.383262", "Latitude": "37.773644", "PassengersIn": "8", "PassengersOut": "1" } I'm now trying to graph the PassengersIn & PassengersOut against the Destination using two lines on a line graph. I'm