Yii2 GridView Personnaliser La Ligne D'En-Tête

Dans mon code j'ai ceci:

<?= GridView::widget([
        'dataProvider' => $dataProvider,
        'columns' => [
            ['class' => 'yii\grid\SerialColumn'],
             ['label' => 'Training Score',
               'attribute' => 'scoreTraining',
               'format' => ['decimal',2],
             ],
             ['label' => 'Exam Score',
               'attribute' => 'scoreExam',
               'format' => ['decimal',2],
             ],
        ],
    ]);

Normalement le nom d'en-tête sera de Formation "Score" et "note à l'Examen"

Est-ce possible dans yii2 gridview pour personnaliser la ligne d'en-tête? alors que ma ligne d'en-tête ressemble en 2 ligne..

HTML:

<table border=1>
  <tr><th>Training <br> Score</th><th>Exam <br> Score</th></tr>
</table>

InformationsquelleAutor Wonka | 2015-04-22