I would like to increase the bullet size but not the text in iReport. I have tried using html
markup and using the style attribute in the <li>
tag. However, it doesn't change the size of the bullets.
The changing of font's size did not solve the issue.
Is there any other way that I can do to increase the size of the bullets?
In the expression editor:
//Other text above...
<ul>
<li style=\"font-size:15px;\">
<span style=\"font-size:10px;\">Sample Text 1</span>
</li>
<li>
<span style=\"font-size:10px;\">Sample Text 2</span>
</li>
</ul>