如何偏移 System.Windows.Forms.DataVisualization.Charting.Chart 中的标签?
我正在尝试显示具有 128 个 bin 的 FFT 结果,但是当我执行以下操作来添加新数据时:
DataVisualization::Charting::Series^ series = m_chart->Series[0];
series->Points->DataBindY(m_dataBuffer);
m_chart->Refresh();
...它将我的光谱标记为从 1 到 128。我需要这些标签来读取 0 到 127。什么是实现这一目标的最简单方法?
I'm trying to display the results of an FFT with 128 bins, but when I do the following to add new data:
DataVisualization::Charting::Series^ series = m_chart->Series[0];
series->Points->DataBindY(m_dataBuffer);
m_chart->Refresh();
...it labels my spectra from 1 to 128. I need those labels to read 0 to 127. What's the easiest way to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
万一其他人想要按照这些方式做某事,您可以使用自定义标签来执行此操作:
Just in case anyone else wants to do something along these lines, you can can do so using custom labels: