머.. 일단 나의 경우에는 실패 -_-
[링크 :
http://u2soft.tistory.com/9]
음.. 나의 현상은 아래와 같은것 같다.
위의 링크는 직접 통합하는 것이고, 아래의 링크는 plugin을 수정하는 하는것이다.
특정폰트가 없다고 해서 아무리 찾아도 해결이 안났는데
이걸 보고 다시 해보고 글을 수정해 봐야겠다.
[링크 :
http://u2soft.tistory.com/11]
2010.12.02 추가
일단 ubuntu에서 관리하는 녀석으로 추가했다. (jpgraph와 mscorefonts 두가지 패키지)
$ sudo apt-cache search jpgraph
libphp-jpgraph - Object oriented graph library for php5
$ sudo apt-get install libphp-jpgraph
$ sudo apt-cache search msttcorefonts
ttf-mscorefonts-installer - Installer for Microsoft TrueType core fonts
$ sudo apt-get install ttf-mscorefonts-installer |
그리고 mantisbt/config_defaults_inc.php 파일에서 아래의 부분을 수정하고
$ sudo vi config_defaults_inc.php
278 $g_system_font_folder = '/usr/share/fonts/truetype/msttcorefonts/';
|
mantis의 jpgraph 설정파일은 MantisGraph.php 에서 아래 부분을 수정
$ sudo vi ./plugins/MantisGraph/MantisGraph.php
42 function config() {
43 return array(
44 'eczlibrary' => ON,
45
46 'window_width' => 800,
47 'bar_aspect' => 0.9,
48 'summary_graphs_per_row' => 2,
49 'font' => 'arial',
50
51 'jpgraph_path' => '/usr/share/jpgraph/',
52 'jpgraph_antialias' => ON,
53 );
54 }
|
그러면 그래프는 나오지만, 문제는 한글 -_-