c# - Changing Title Font in WPF OxyPlot -
is there way change font of title text plot in oxyplot? i'm using wpf , have custom font in resources directory use this. looked oxyplot code , found there field it, not seem implemented. missing on how use it, or there other way go achieving this? help!
yes, there titlefont property plotmodel in oxyplot (oxyplot.plotmodel.titlefont). assign fontfamily name in string property. example:
plotmodel.titlefont = "arial"; plotmodel.titlefont = "segoe ui";
Comments
Post a Comment