带 Asp 的 X 轴:图表

Posted

技术标签:

【中文标题】带 Asp 的 X 轴:图表【英文标题】:X-Axis with Asp:Chart 【发布时间】:2012-07-12 18:43:17 【问题描述】:

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

当使用可视化 Web 设计器数据绑定工具将数据绑定到图表时,我什至想查看不接收任何数据的列。 (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

知道我该如何做到这一点吗?

【问题讨论】:

【参考方案1】:

你能分享你的代码吗? 使用下面的标记,我在 X 轴上得到从 0 到 11 的 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>

【讨论】:

以上是关于带 Asp 的 X 轴:图表的主要内容,如果未能解决你的问题,请参考以下文章

echarts,折线图,我想设置X轴每个刻度的固定宽度该怎么设定呢

excel图表怎么设置x轴y轴

.net 图表:向 X 轴添加角度会减小图表宽度?

可以创建双 y 轴图表,但次要 y 系列使用次要 x 轴?

图表部件设置X轴节点的错位显示

X 轴刻度不以高图表中的列系列为中心(jsFiddle)