decreased the size of the points in the line chart

This commit is contained in:
Martynas Mickevicius
2010-07-07 16:57:30 +03:00
parent 2e421895ed
commit c530e97fb7
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ class PMA_pChart_multi_line extends PMA_pChart_multi
// Draw the bar chart
$this->chart->drawLineGraph($this->dataSet->GetData(),$this->dataSet->GetDataDescription());
$this->chart->drawPlotGraph($this->dataSet->GetData(),$this->dataSet->GetDataDescription(),4,2,-1,-1,-1,TRUE);
$this->chart->drawPlotGraph($this->dataSet->GetData(),$this->dataSet->GetDataDescription(),3,1,-1,-1,-1,TRUE);
}
}

View File

@@ -13,7 +13,7 @@ class PMA_pChart_single_line extends PMA_pChart_single
{
// Draw the line chart
$this->chart->drawLineGraph($this->dataSet->GetData(),$this->dataSet->GetDataDescription());
$this->chart->drawPlotGraph($this->dataSet->GetData(),$this->dataSet->GetDataDescription(),4,2,-1,-1,-1,TRUE);
$this->chart->drawPlotGraph($this->dataSet->GetData(),$this->dataSet->GetDataDescription(),3,1,-1,-1,-1,TRUE);
}
}