/webtrees/app/ |
H A D | Statistics.php | 312 * @param string|null $color_from 318 string|null $color_from = null, 321 return $this->individual_repository->chartIndisWithSources($color_from, $color_to); 365 * @param string|null $color_from 371 string|null $color_from = null, 374 return $this->individual_repository->chartFamsWithSources($color_from, $color_to); 794 * @param string|null $color_from 799 public function chartMedia(string|null $color_from = null, string|null $color_to = null): string argument 801 return $this->media_repository->chartMedia($color_from, $color_to); 946 * @param string|null $color_from [all …]
|
/webtrees/app/Statistics/Repository/ |
H A D | IndividualRepository.php | 721 * @param string|null $color_from 726 public function statsBirth(string|null $color_from = null, string|null $color_to = null): string argument 729 ->chartBirth($color_from, $color_to); 779 * @param string|null $color_from 784 public function statsDeath(string|null $color_from = null, string|null $color_to = null): string argument 787 ->chartDeath($color_from, $color_to); 1802 * @param string|null $color_from 1809 string|null $color_from = null, 1821 ->chartCommonGiven($tot_indi, $given, $color_from, $color_to); 1827 * @param string|null $color_from [all …]
|
H A D | FamilyRepository.php | 676 * @param string|null $color_from 683 string|null $color_from = null, 688 ->chartLargestFamilies($color_from, $color_to, $total); 1707 * @param string|null $color_from 1712 public function statsMarr(string|null $color_from = null, string|null $color_to = null): string argument 1715 ->chartMarriage($color_from, $color_to); 1721 * @param string|null $color_from 1726 public function statsDiv(string|null $color_from = null, string|null $color_to = null): string argument 1729 ->chartDivorce($color_from, $color_to);
|
H A D | MediaRepository.php | 242 * @param string|null $color_from 247 public function chartMedia(string|null $color_from = null, string|null $color_to = null): string argument 257 ->chartMedia($media, $color_from, $color_to);
|
/webtrees/app/Statistics/Google/ |
H A D | ChartCommonGiven.php | 48 * @param string|null $color_from 56 string|null $color_from = null, 59 $color_from ??= 'ffffff'; 83 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartFamilyWithSources.php | 48 * @param string|null $color_from 56 string|null $color_from = null, 59 $color_from ??= 'ffffff'; 81 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartIndividualWithSources.php | 48 * @param string|null $color_from 56 string|null $color_from = null, 59 $color_from ??= 'ffffff'; 81 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartMedia.php | 48 * @param string|null $color_from 55 string|null $color_from = null, 58 $color_from ??= 'ffffff'; 78 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartFamilyLargest.php | 74 * @param string|null $color_from 81 string|null $color_from = null, 85 $color_from ??= 'ffffff'; 106 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartCommonSurname.php | 106 * @param string|null $color_from 114 string|null $color_from = null, 117 $color_from ??= 'ffffff'; 141 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartDivorce.php | 81 * @param string|null $color_from 86 … public function chartDivorce(string|null $color_from = null, string|null $color_to = null): string argument 88 $color_from ??= 'ffffff'; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartDeath.php | 81 * @param string|null $color_from 86 public function chartDeath(string|null $color_from = null, string|null $color_to = null): string argument 88 $color_from ??= 'ffffff'; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartBirth.php | 81 * @param string|null $color_from 86 public function chartBirth(string|null $color_from = null, string|null $color_to = null): string argument 88 $color_from ??= 'ffffff'; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
H A D | ChartMarriage.php | 81 * @param string|null $color_from 86 …public function chartMarriage(string|null $color_from = null, string|null $color_to = null): string argument 88 $color_from ??= 'ffffff'; 105 $colors = $this->color_service->interpolateRgb($color_from, $color_to, count($data) - 1);
|
/webtrees/app/Statistics/Repository/Interfaces/ |
H A D | MediaRepositoryInterface.php | 170 * @param string|null $color_from 175 … public function chartMedia(string|null $color_from = null, string|null $color_to = null): string; argument
|