クラスごとの数値指標結果履歴

{{ $CurrentDate }} 現在)

チーム名 {{ $TeamNames[$TeamName] }} 対象期間 {{ $EvaDatePrint }} チームメンバー
リーダー: {{ $MemberName1 != '' ? $MemberName1 :'-' }} サブリーダー: {{ $MemberName2 != '' ? $MemberName2 :'-' }}
メンバー: {{ $MemberName3 != '' ? $MemberName3 :'-' }} フリー: {{ $MemberName4 != '' ? $MemberName4 :'-' }}
@for ($i = 0, $count = count( $GraphData); $i < $count; $i =$i +4)
@if($i==0)
数値指標総合点の推移:
今回結果: {{ $MainTotalScoreText }}
前回結果: {{ $PrevMainTotalScoreText }}
前回比: {{ $PrevRatio!= ''? $PrevRatio.' 点':'' }}
クラスごとの数値指標:
    @foreach($GraphTitle as $index => $data)
  1. {{ $data }}
  2. @endforeach
@endif
@for($index=$i; $index < ($i+4); $index = $index+1 ) @if(isset($GraphData[$index]) )
{{ '  '. ($index +1) .'. ' .$data }}
@if(count($GraphData[$index]) == 6 )
{{ $GraphData[$index][1] }} 点 {{ $GraphData[$index][2] }} 点 {{ $GraphData[$index][3] }} 点 {{ $GraphData[$index][4] }} 点 {{ $GraphData[$index][5] }} 点
- {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} {{ $GraphData[$index][3] - $GraphData[$index][2]>0?'+':'' }} {{ number_format($GraphData[$index][3] - $GraphData[$index][2],2,'.','') }} {{ $GraphData[$index][4] - $GraphData[$index][3]>0?'+':'' }} {{ number_format($GraphData[$index][4] - $GraphData[$index][3],2,'.','') }} {{ $GraphData[$index][5] - $GraphData[$index][4]>0?'+':'' }} {{ number_format($GraphData[$index][5] - $GraphData[$index][4],2,'.','') }}
@endif @if(count($GraphData[$index]) == 5 )
{{ $GraphData[$index][1] }} 点 {{ $GraphData[$index][2] }} 点 {{ $GraphData[$index][3] }} 点 {{ $GraphData[$index][4] }} 点
- {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} {{ $GraphData[$index][3] - $GraphData[$index][2]>0?'+':'' }} {{ number_format($GraphData[$index][3] - $GraphData[$index][2],2,'.','') }} {{ $GraphData[$index][4] - $GraphData[$index][3]>0?'+':'' }} {{ number_format($GraphData[$index][4] - $GraphData[$index][3],2,'.','') }}
@endif @if(count($GraphData[$index]) == 4 )
{{ $GraphData[$index][1] }} 点 {{ $GraphData[$index][2] }} 点 {{ $GraphData[$index][3] }} 点
- {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }} {{ $GraphData[$index][3] - $GraphData[$index][2]>0?'+':'' }} {{ number_format($GraphData[$index][3] - $GraphData[$index][2],2,'.','') }}
@endif @if(count($GraphData[$index]) == 3 )
{{ $GraphData[$index][1] }} 点 {{ $GraphData[$index][2] }} 点
- {{ $GraphData[$index][2] - $GraphData[$index][1]>0?'+':'' }} {{ number_format($GraphData[$index][2] - $GraphData[$index][1],2,'.','') }}
@endif @if(count($GraphData[$index]) == 2 )
{{ $GraphData[$index][1] }} 点
-
@endif
@endif @endfor
@endfor