ChartAreas(0).AxisX.LabelStyle.Format 正在更改我的轴标签文本而不是我的格式

发布于 2024-10-15 12:42:09 字数 525 浏览 2 评论 0原文

因此,我第一次开始使用 Microsoft Chart 控件,但遇到了一个问题。

我将数据库查询返回到 List 对象中,并使用该列表对象填充图表的 X 轴和 Y 轴,如下所示。 (_runData 是一个“List(of DatabaseTableName)”样式对象,填充了我的查询结果。

Primary_Chart.Series(0).Points.DataBindXY(_runData, "DateTime", _runData, "UPPER_PRESSURE")

我的日期时间字段作为序列号返回(即 40116.76111),因此我想格式化 X 轴以更容易阅读地显示该字段。输入我的问题代码。

Chart_Obj.ChartAreas(0).AxisX.LabelStyle.Format = "MM"

此代码将我的轴更改为显示 MM 而不是序列号。我尝试了其他格式类型,结果是我的轴标签更改为与我在 = 符号之后放置的内容完全相同

。这里? 非常感谢。

So I'm starting to play with the Microsoft Chart control for the first time and I ran into an issue.

I'm returning a database query into a List object and using that list object to fill the X and Y axes of my chart as seen below. (_runData is a "List(of DatabaseTableName)" style Object filled with the results of my query.

Primary_Chart.Series(0).Points.DataBindXY(_runData, "DateTime", _runData, "UPPER_PRESSURE")

My Datetime field is returning as a Serial Number (i.e. 40116.76111) so I want to format the X Axis to display the field more readably. Enter my problem code.

Chart_Obj.ChartAreas(0).AxisX.LabelStyle.Format = "MM"

This code changes my axis to display MM instead of the Serial Number. I have experimented with other Formatting type and the result is that my Axis Labels change to read exactly as whatever I put after the = sign.

What am I missing here?
Thanks a ton.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以可爱出名 2024-10-22 12:42:09

您需要将系列上的 XValueType 设置为 DateTime 或 Date,以便图表知道将值显示为日期时间而不是双精度数。

Primary_Chart.Series(0).XValueType = ChartValueType.DateTime

有关详细信息,请参阅http://msdn.microsoft.com/en-us/library/system.web.ui.datavisualization.charting.series.xvaluetype.aspx

You need to set the XValueType on the series to DateTime or Date so that the charts know to display the values as datetimes rather than doubles.

Primary_Chart.Series(0).XValueType = ChartValueType.DateTime

For more details see http://msdn.microsoft.com/en-us/library/system.web.ui.datavisualization.charting.series.xvaluetype.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文