1

我有asp:chart一个系列。该系列共有 13 分。(1 到 13)

当使用 Visual Web Designer 数据绑定工具将数据绑定到图表时,我什至想查看不接收任何数据的列。(x 列,其中 y = 0)。

现在我有这个(我的图表的 ASCII 表示):

        4 |[]
        3 |[]      []
        2 |[]  []  [][]      
        1 |[][][][][][]
           ------------
           1 3 5 7 9 10

带有 x 坐标的图表 where y > 0。我想要的是这个:

       4 |[]
       3 |[]              []
       2 |[]      []      [][]    
       1 |[]  []  []  []  [][]
          -----------------------------
          1 2 3 4 5 6 7 8 9 10 11 12 13

知道我怎么能做到这一点吗?

4

1 回答 1

0

你能分享你的代码吗?使用下面的标记,我得到从 0 到 11 的 X 轴 12 个数字:

<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>
于 2012-07-20T18:31:42.937 回答