ChartAreas(0).AxisX.LabelStyle.Format 正在更改我的轴标签文本而不是我的格式
因此,我第一次开始使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将系列上的 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