Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# 的 VS2010 上有 .NET CHART
如何将 x 轴移动到 Y 轴的底部。见附件。
我认为你应该能够做这种事情:
_chart.ChartAreas["YourChartArea"].AxisY.Crossing = 0.0001;
(可能是AxisX.Crossing你需要设置;我总是把那些搞混了!)
AxisX.Crossing
它适用于非对数刻度,但我不完全确定它适用于对数 Y 轴。