Esempio n. 1
0
 function Sparkline_Line($catch_errors = true)
 {
     parent::Sparkline($catch_errors);
     $this->dataSeries = array();
     $this->dataSeriesStats = array();
     $this->dataSeriesConverted = array();
 }
Esempio n. 2
0
 function Sparkline_Box($mean, $low, $high, $catch_errors = true)
 {
     parent::Sparkline($catch_errors);
     $this->mean = $mean;
     $this->low = $low;
     $this->high = $high;
     $this->render(13);
 }
 function Sparkline_Line($catch_errors = TRUE)
 {
     parent::Sparkline($catch_errors);
     $this->dataSeries = array();
     $this->dataSeriesStats = array();
     $this->dataSeriesConverted = array();
     $this->featurePoint = array();
 }
 function Sparkline_Line($catch_errors = true)
 {
     parent::Sparkline($catch_errors);
     $this->dataSeries = array();
     $this->dataSeriesStats = array();
     $this->dataSeriesConverted = array();
     $this->colorBackground = 'backgroundColor';
     $this->featurePoint = array();
 }
 function Sparkline_Bar($catch_errors = true)
 {
     parent::Sparkline($catch_errors);
     $this->dataSeries = array();
     $this->dataSeriesStats = array();
     $this->dataSeriesConverted = array();
     $this->barWidth = 1;
     $this->barSpacing = 1;
     $this->barColorDefault = 'black';
     $this->barColorUnderscoreDefault = 'black';
 }