I have array of objects like the example below;
[{ \"id\" : 13100, \"key\" : \"Emlak Vergisi\", \"y\" : 135638.98 }, { \"
You can use the rowId provided in the renderRow function. I've set up a working example here
Render row method :
renderRow = (rowData, sectionId, rowId) => { if (rowId % 2) { return ( {rowData.id} ); } else { return ( {rowData.id} ); } };