場景 C#窗體應用中使用ZedGraph曲線插件繪製圖表: https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/99716066 Winforn中設置ZedGraph曲線圖的屬性、坐標軸屬性、刻度屬性: https://blog.csd ...
場景
C#窗體應用中使用ZedGraph曲線插件繪製圖表:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/99716066
Winforn中設置ZedGraph曲線圖的屬性、坐標軸屬性、刻度屬性:
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/100112573
https://www.cnblogs.com/badaoliumangqizhi/p/11422087.html
在上面已經實現的效果為:
可以看到隨著圖形的縮小,相應的字體和間距等也被縮小,需要設置
字體大小和tic大小將始終完全符合指定的大小,而不進行任何縮放。
註:
博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關註公眾號
霸道的程式猿
獲取編程相關電子書、教程推送與免費下載。
實現
通過查找其手冊文檔,找到這麼一個屬性。
官方原文說明:
Determines if the font sizes, tic sizes, gap sizes, etc. will be scaled according to the size of the Rect and the BaseDimension. If this value is set to false, then the font sizes and tic sizes will always be exactly as specified, without any scaling.
直譯過來:
確定字體大小、tic大小、間隙大小等是否將根據rect和basedimension的大小進行縮放。如果將此值設置為false,則字體大小和tic大小將始終完全符合指定的大小,而不進行任何縮放。
實現代碼:
myPane.IsFontsScaled = false;
其中
//聲明pane對象 GraphPane myPane = new GraphPane(); //獲取控制項的Pane myPane = zgc.GraphPane;
其中
ZedGraphControl zgc
效果