我有一个asp:chart
,里面有一个系列。该系列赛有13分。 (1至13)
使用Visual Web Designer数据绑定工具将数据绑定到图表时,我甚至希望看到不接收任何数据的列。 (x y = 0的列)。
现在我有了这个(我的图表的ASCII表示):
4 |[]
3 |[] []
2 |[] [] [][]
1 |[][][][][][]
------------
1 3 5 7 9 10
x坐标为y > 0
的图表。我想要的是这个:
4 |[]
3 |[] []
2 |[] [] [][]
1 |[] [] [] [] [][]
-----------------------------
1 2 3 4 5 6 7 8 9 10 11 12 13
知道我怎么能做到这一点吗?
答案 0 :(得分:0)
你能分享一下你的代码吗? 使用以下标记,我得到X轴12从0到11的数字:
<asp:Chart ID="Chart1" runat="server">
<Series>
<asp:Series Name="Series1" ChartType="Point">
<Points>
<asp:DataPoint XValue="1" YValues="2" />
<asp:DataPoint XValue="3" YValues="5" />
<asp:DataPoint XValue="5" YValues="3" />
<asp:DataPoint XValue="7" YValues="8" />
<asp:DataPoint XValue="9" YValues="1" />
<asp:DataPoint XValue="10" YValues="1" />
</Points>
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea />
</ChartAreas>
</asp:Chart>