How to change font size for JMeter?

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

I tried the following question the font size of the jmeter test plan navigation bar . However, for version 2.13 there is no folder src.

Here is an image of how it looks now:

enter image description here

How to change the font size for the JMeter section test plan.

+4
source share
4 answers

Edit October 31, 2017:

Previous answer:

  • src, JMeter , .
  • JMeter Apache Ant. , % ANT_HOME%/bin ​​ PATH
  • JMeter, 2 :

    • ant download_jars
    • ant package
  • JMeter apache-jmeter-2.13/bin, :

    jmeter -Djmeter.dialog.font=20 .....
    

    , , system.properties( "bin" JMeter)

    jmeter.dialog.font=20
    

    JMeter . . Apache JMeter JMeter.


Bitbucket,

https://bitbucket.org/glinius/jmeter-font-increase/downloads/ApacheJMeter_core.jar

/lib/ext JMeter, ( - ), 4 ,

+1
+2

Jmeter 3.2

>

, . apache-jmeter-3.2\bin\jmeter.properties. 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
0
source

In Jmeter 3.1 and 3.2, uncomment the lines below in the Jmeter.properties file and restart Jmeter. It worked, and the font size increased for all icons and components.

jmeter.hidpi.mode = true

jmeter.hidpi.scale.factor = 2.0

0
source

All Articles