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.
我正在尝试反转 MSChart 中的 Y 轴
从左到右的比例为 5 - 1 因此,如果一个条的值为 2,它将在比例上从 5 填充到 2,分数位于填充条的右侧。
MS Chart 可以吗?
谢谢
One possibility would be adding a second not enabled axis with "is reversed" and displaying the values on this one.
我真的没有时间完全测试这个,但也许
objChart.ChartAreas[0].AxisY.IsReversed = true;
...可能是一个很好的起点?
编辑:我实际上刚刚尝试过,它只会翻转整个图表。可能不是你所追求的。