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.
使用 ZedGraph,我可以通过执行以下操作添加多个 YAxis:
YAxis yAxis3 = new YAxis("Distance, m"); pane.YAxisList.Add(yAxis3);
有没有类似的方法来添加一个额外的 XAxis,不是 X2Axis?
我想要做的是让内部 XAxis 反映数据的月份。外部 XAxis 将反映年份。这样,一切都可以正确扩展,而不会向用户提供冗余信息。两者都将绑定到相同的值,只有一个显示为MMM,另一个显示为yyyy
MMM
yyyy
快速回答:不幸的是,AFAIK不是。
请提供更详细的信息(例如,为什么需要另一个 x 轴)也许有一些解决方法。