在 ZedGraph 的右上角对齐图例

发布于 2024-12-09 13:17:30 字数 454 浏览 0 评论 0原文

在 ZedGraph 的右上角对齐图例。

 myPane.Legend.Position = ZedGraph.LegendPos.TopCenter; // This way working.

我尝试过这种方法,但没有成功。

 //myPane.Legend.Location.AlignH = AlignH.Right;
//myPane.Legend.Location.AlignV = AlignV.Top;
//Location(0.95, 0.15,);// CoordType.PaneFraction, AlignH.Right, AlignV.Top);
//AlignV.Top; //(0.95, 0.15, CoordType.PaneFraction, AlignH.Right, AlignV.Top);

任何建议。 谢谢 奥卡西

Aligning Legend at the top right on ZedGraph.

 myPane.Legend.Position = ZedGraph.LegendPos.TopCenter; // This way working.

I tried this way and has not worked.

 //myPane.Legend.Location.AlignH = AlignH.Right;
//myPane.Legend.Location.AlignV = AlignV.Top;
//Location(0.95, 0.15,);// CoordType.PaneFraction, AlignH.Right, AlignV.Top);
//AlignV.Top; //(0.95, 0.15, CoordType.PaneFraction, AlignH.Right, AlignV.Top);

Any suggestions.
Thanks
ocaccy

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寂寞笑我太脆弱 2024-12-16 13:17:30

有几种方法可以将图例对齐到右上角,一种方法是:

myPane.Legend.Position = ZedGraph.LegendPos.Right;

或者如果您希望图例位于图形区域内:

myPane.Legend.Position = ZedGraph.LegendPos.InsideTopRight;

There are a couple of ways to align the legend to the top right, one way is:

myPane.Legend.Position = ZedGraph.LegendPos.Right;

or if you want the legend inside the graph area:

myPane.Legend.Position = ZedGraph.LegendPos.InsideTopRight;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文