Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to change font size for JMeter?

Tags:

java

jmeter

I am using JMeter with 2.13 version.
I want to increase font size for JMeter.

I have tried following question jmeter test plan navigation pane font size. However for 2.13 version doesn't have src folder.

Here is a picture, how it looks now:

enter image description here

How to change font size for JMeter test plan section.

like image 879
catch23 Avatar asked Apr 27 '16 19:04

catch23


2 Answers

Since JMeter 3.2, use Menu:

Options > Zoom In

Options > Zoom Out

See this:

  • https://bz.apache.org/bugzilla/show_bug.cgi?id=59995

JMeter 3.0 (released 2 weeks ago) has improved regarding the icons and tables but does not yet support full HiDPI mode:

See this particular bug:

  • https://bz.apache.org/bugzilla/show_bug.cgi?id=58426
  • https://bz.apache.org/bugzilla/show_bug.cgi?id=59168

To set properties, see:

  • https://jmeter.apache.org/usermanual/hints_and_tips.html#hidpi

Now for fonts, you can use Swing mechanism. To do that, add to jmeter.sh or jmeter.bat the JVM System property:

-Dswing.plaf.metal.controlFont=Dialog-20

And ensure you use the Cross Platform LAF

like image 190
UBIK LOAD PACK Avatar answered Oct 03 '22 10:10

UBIK LOAD PACK


Using Jmeter 3.2

Options > Zoom In

Zoomed some panes but not others. However modifying apache-jmeter-3.2\bin\jmeter.properties works. Tested with Win 10.

#jmeter.hidpi.mode=false
# To enable pseudo-hidpi mode change to true
jmeter.hidpi.mode=true
# HiDPI scale factor
#jmeter.hidpi.scale.factor=1.0
# Suggested value for HiDPI
jmeter.hidpi.scale.factor=2.0
like image 23
allap Avatar answered Oct 03 '22 11:10

allap