I have a dataset that I need to graph with some given values.
Here is how my data is structured...
(Date on the x-axis and Values on the y-axis)
|| Date || X1 || X2 || X3 ||
|| 01-01-2008 || 1 || 2 || 3 ||
|| 01-01-2008 || 2 || 3 || 4 ||
|| 01-02-2008 || 1 || 2 || 3 ||
|| 01-03-2008 || 1 || 2 || 3 ||
|| 01-04-2008 || 1 || 2 || 3 ||
In the chart, I want to show a straight vertical line for the first two plotted values.
However, the visualization API's line chart is displaying separate columns for each of the first two dates...
For example,
xAxis - Jan 01, 2008 || Jan 01, 2008 || Feb 01, 2008 || Mar 01, 2008 || Apr 01, 2008
instead of just showing:
xAxis - Jan 01, 2008 || Feb 01, 2008 || Mar 01, 2008 || Apr 01, 2008
with a vertical straight line indicating Jan 01, 2008
The desired outcome is to have a vertical straight line representing Jan 01, 2008 without excluding the duplicate values...
this will ensure that both values corresponding to Jan 01, 2008 are displayed vertically on the chart.
If you can assist me in resolving this issue, it would be greatly appreciated.