You are here

function pChart::drawFilledEllipse in Visitors 8

Same name and namespace in other branches
  1. 7.0 pchart/pChart.inc \pChart::drawFilledEllipse()

File

pchart/pChart.inc, line 2305

Class

pChart

Code

function drawFilledEllipse($Xc, $Yc, $Height, $Width, $R, $G, $B) {
  $this
    ->drawFilledCircle($Xc, $Yc, $Height, $R, $G, $B, $Width);
}