I have an asp:chart
with one serie in it. The serie has a collection of 13 points. (1 to 13)
When the data is binded to the chart with the Visual Web Designer data binding tool, I want to see even the columns that won't receive any data. (x Columns where y = 0).
Right now I have this (ASCII representation of my chart) :
4 |[]
3 |[] []
2 |[] [] [][]
1 |[][][][][][]
------------
1 3 5 7 9 10
Chart with x coordinates where y > 0
. What I want is this :
4 |[]
3 |[] []
2 |[] [] [][]
1 |[] [] [] [] [][]
-----------------------------
1 2 3 4 5 6 7 8 9 10 11 12 13
Any idea how I can accomplish this ?