Page 1 of 1

Custom font and font size

Posted: Mon Jun 30, 2008 10:06 am
by ntherning
Hi,

I have patched Eastwood to be able to specify my own font. I've done this using servlet init-params. The user can either specify a TTF file containing the font or give the name of a font to be used instead of the default Dialog font. The default font size is also configurable using an init-param.

I'd like to add this to Eastwood. What do you think?

Posted: Tue Jul 01, 2008 8:00 am
by david.gilbert
Yes, this sounds good to me.

Regards,

Dave

Posted: Wed Jul 02, 2008 9:02 am
by ntherning
The patch has been committed. Here's an example of how to use it:

Code: Select all

  <servlet>
    <servlet-name>chart</servlet-name>
    <servlet-class>org.jfree.eastwood.ChartServlet</servlet-class>
    <init-param>
      <param-name>fontResource</param-name>
      <param-value>/WEB-INF/verdana.ttf</param-value>
    </init-param>
    <init-param>
      <param-name>fontSize</param-name>
      <param-value>10</param-value>
    </init-param>
  </servlet>
See the Javadoc for ChartServlet for more info on the available init-params.

Changes:
http://eastwood.svn.sourceforge.net/vie ... evision=25