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コントロールの灰色の境界線を削除するにはどうすればよいですか?
グラフだけが、灰色の境界線、ラベル、およびタイトルのない形式である必要があります。
私は問題を解決しようとしました
_zgc.MasterPane.Border.Width = 0; _zgc.MasterPane.Border.IsVisible = false;
しかし今のところ成功していません。
解決策は次のとおりです。
GraphPane _gp = _zgc.GraphPane; _gp.Margin.All = 0; _gp.Legend.IsVisible = false; _gp.Title.IsVisible = false;