I need to create a graph using data from one row. The row contains multiple columns to put on the graph. The data looks like so:
current_month: 80,month_1: 100,month_2: 75, month_3: 70
month_4: 75, month_5: 90
I want to do a bar graph with Month as category and quantity as value. Is there any...