tahoma font was replaced with DejaVuSans

This commit is contained in:
Marc Delisle
2010-10-14 06:30:06 -04:00
parent 9cbd454fce
commit 2ecf4b3641

View File

@@ -97,7 +97,7 @@ abstract class PMA_pChart_chart extends PMA_chart
$this->dataSet = new pData;
$this->chart->reportWarnings('GD');
$this->chart->ErrorFontName = $this->getFontPath().'tahoma.ttf';
$this->chart->ErrorFontName = $this->getFontPath().'DejaVuSans.ttf';
// initialize colors
foreach ($this->getColors() as $key => $color) {
@@ -109,7 +109,7 @@ abstract class PMA_pChart_chart extends PMA_chart
);
}
$this->chart->setFontProperties($this->getFontPath().'tahoma.ttf', $this->getFontSize());
$this->chart->setFontProperties($this->getFontPath().'DejaVuSans.ttf', $this->getFontSize());
$this->chart->setImageMap(true, 'mapid');
}