如何删除 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;
问题是您使用的是 Masterpane 而不是 Graphpane。
_zgc.GraphPane.Border.IsVisible = false;
_zgc.GraphPane.Legend.IsVisible = false;
_zgp.GraphPane.Title.IsVisible = false;
如果您想隐藏除图表内容之外的所有内容:
zedGraph.GraphPane.Title.IsVisible = false;
zedGraph.GraphPane.XAxis.IsVisible = false;
zedGraph.GraphPane.YAxis.IsVisible = false;
zedGraph.GraphPane.Border.IsVisible = false;
zedGraph.GraphPane.Chart.Border.IsVisible = false;
您还可以删除图表窗格和控件边框之间的间隙:
zedGraph.GraphPane.Margin.All = -1;