You are here

function pChart::setFixedScale in Visitors 7.0

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

File

pchart/pChart.inc, line 260

Class

pChart

Code

function setFixedScale($VMin, $VMax, $Divisions = 5) {
  $this->VMin = $VMin;
  $this->VMax = $VMax;
  $this->Divisions = $Divisions;
}