Data Rendering row wise not column

Hi ,
I am using ng-handsontable loading different array for column and row header , now i want to map data row wise but i m not able to do . All things are working fine but this is making huge issue please help me to get out from this .
Thanks

my array of header and column is -
$scope.Row_Header = [‘System / Channel Number’,
‘Airline Channel Name’,
‘Airline Category Name’,
'Theme ',
‘Airline Recommends’,
‘Route’,
‘Tier’,
‘Parental Lock’,
‘Economy Upgrade’,
‘Master Status’,
‘Master / File Location’,
'Material Format Required to Delivery Point ',
‘Due Date’,
'Rush Order? ',
‘Processing Lab’,
‘Aspect Ratio Ordered’,
‘Version Ordered’,
'Integration Lab ',
‘Integrator Deadline’,
‘Compile’,
‘Video Codec / Filetype’,
‘Bit Rate’,
‘Aspect Ratio’,
‘Version’,
‘Security / DRM’,
'Licence Start ',
‘Licence End ‘,
‘Quantity / Exhibitions Forecast’,
‘% of Aircraft’,
‘Currency’,
‘Licence Rev Rate’,
‘Licence Rev Total’,
‘EstimatedExibits’,
‘TechFees’,
‘Budget Total’,
‘Licence COS Rate’,
‘Licence COS Total’,
’ Materials Cost’,
‘Client Materials Cost’,
‘Service Fee’,
‘Metadata Fee’,
‘Deal Identifier’,
‘PO Notes’,
‘Recall’,
‘Encode’,
‘Dynamic Subs’,
‘Dub Creation’,
‘Sub Creation’,
‘Layback / Conform of Subs’,
‘Layback of Dubs’,
’ Edits’,
‘Other’,
‘PO Type’,
‘Material Quantity’,
'Standard ',
‘PCM1’,
‘PCM2’,
‘AFM1’,
‘AFM2’,
‘HIFI1’,
‘HIFI2’,
‘LINEAR1’,
‘LINEAR2’,
‘SUBTITLE 1’,
‘SUBTITLE 2’,
‘TAPE LINE UP / PLAY STRING’,
'Delivery Point ',
‘Encoding Lab’,
‘Deadline to Encoding Lab’
];

$scope.columns = [
{
    data: 'id',
    title: 'PAC_3000i'
},
{
    data: 'price',
    title: 'PAC_eX2_QT'
}
,
{
    data: 'price',
    title: 'PAC_eX2_QT1'
}
,
{
    data: 'price',
    title: 'PAC_eX2_QT2'
}
,
{
    data: 'price',
    title: 'PAC_eX2_QT3'
}
,
{
    data: 'price',
    title: 'PAC_eX2_QT4'
}
,
{
    data: 'price',
    title: 'PAC_eX2_QT5'
}
];

ng-handsontable structure

                    <hot-column ng-repeat="column in columns" data="{{column.OEMSystem_ID}}" title="column.OEMSystem_ID"></hot-column>

                </hot-table>

We have already discussed the subject on our e-mail support channel.
The solution is: https://plnkr.co/edit/mu1QrwbmiAV8rhseWIie?p=preview

1 Like